Class StandardModelParams

java.lang.Object
rawDeepLearningClassifier.dlClassification.animalSpot.StandardModelParams
All Implemented Interfaces:
Serializable, Cloneable
Direct Known Subclasses:
DelphinIDParams, GenericModelParams, KetosDLParams, SoundSpotParams

public class StandardModelParams extends Object implements Serializable, Cloneable
Parameters for the SoundSpot model.
Author:
Jamie Macaulay
See Also:
  • Field Details Link icon

    • serialVersionUID Link icon

      public static final long serialVersionUID
      See Also:
    • modelPath Link icon

      public String modelPath
      The model path
    • useCUDA Link icon

      public boolean useCUDA
      True to use CUDA.
    • useDefaultTransfroms Link icon

      public boolean useDefaultTransfroms
      Use default transforms
    • threshold Link icon

      public double threshold
      The threshold between zero and one. This is used to allow binary classification.
    • numClasses Link icon

      public int numClasses
    • classNames Link icon

      public DLClassName[] classNames
      The class names. e.g. porpoise, noise, bat
    • dlTransfromParams Link icon

      public List<org.jamdev.jdl4pam.transforms.DLTransfromParams> dlTransfromParams
      List of transforms for the raw data e.g. filtering, spectrogram, spectrogram normalisation etc. This is only used for saving serialised settings
    • dlTransfroms Link icon

      public transient ArrayList<org.jamdev.jdl4pam.transforms.DLTransform> dlTransfroms
      The DL custom transforms if the default transforms for the model are not being used.
    • defaultSegmentLen Link icon

      public Double defaultSegmentLen
      The default segment length of the model in milliseconds.
    • useDefaultSegLen Link icon

      public boolean useDefaultSegLen
      Use the default segment length
    • binaryClassification Link icon

      public boolean[] binaryClassification
      Which classes to apply binary classification to.
    • exampleSoundIndex Link icon

      public int exampleSoundIndex
      The index of the example sound which should be shown.

      Note: It is a little messy putting this here but otherwise would need a while new settings class for the advanced UI which would need to be linked to this params class somehow and gets very complicated.

  • Constructor Details Link icon

    • StandardModelParams Link icon

      public StandardModelParams()
  • Method Details Link icon