java.lang.Object
rawDeepLearningClassifier.dlClassification.orcaSpot.OrcaSpotParams
All Implemented Interfaces:
Serializable, Cloneable

public class OrcaSpotParams extends Object implements Serializable, Cloneable
Stored settings for the OrcaSpot module.
Author:
Jamie Macaulay
See Also:
  • Field Details

    • triggerChannel

      public int triggerChannel
      A channel bitmap of trigger channels. Note that only one trigger channel is currentyl supported.
    • OrcaCounter

      public static int OrcaCounter
    • NoiseCounter

      public static int NoiseCounter
    • pythonExeFile

      public String pythonExeFile
      Location of the python.exe file.
    • predict_script

      public String predict_script
      Python script for running the initial prediction stage
    • predict2_script

      public String predict2_script
      Python script for running the later classification stage.
    • model

      public String model
      The initial prediction models
    • classifier_model

      public String classifier_model
      The classifier model
    • threshold

      public String threshold
      The threshold to apply to the initial prediction stage
    • threshold2

      public String threshold2
      The threshold to apply to the later classification stage.
    • no_cuda

      public boolean no_cuda
      Use the graphics card.
    • num_workers

      public String num_workers
      Number of workers?
    • audio_file

      public File audio_file
      Non user changeable
    • seq_len

      public String seq_len
      The length of audio to analyse in seconds (This should be set the same as length of input file and is not user changeable);
    • hop_size

      public String hop_size
      The hop size to use in seconds (This should be set the same as length of input file and is not use changeable)
    • classiferFile

      public String classiferFile
      The location of .exe file that runs the Deep Learning classifier.
  • Constructor Details

    • OrcaSpotParams

      public OrcaSpotParams()
  • Method Details

    • getThreshold

      public String getThreshold()
    • getThreshold2

      public String getThreshold2()
    • setThreshold

      public void setThreshold(String threshold)
    • getPredict_script

      public String getPredict_script()
    • getClass_script

      public String getClass_script()
    • setPredict_script

      public void setPredict_script(String predict_script)
    • getAudio_file

      public String getAudio_file()
    • setAudio_file

      public void setAudio_file(File audio_file)
    • getSeq_len

      public String getSeq_len()
    • setSeq_len

      public void setSeq_len(String seq_len)
    • getHop_size

      public String getHop_size()
    • setHop_size

      public void setHop_size(String hop_size)
    • getNo_cuda

      public Boolean getNo_cuda()
    • setNo_cuda

      public void setNo_cuda(boolean no_cuda)
    • getModel

      public String getModel()
    • getclassifierModel

      public String getclassifierModel()
    • setModel

      public void setModel(String model)
    • getNum_workers

      public String getNum_workers()
    • setNum_workers

      public void setNum_workers(String num_workers)