@@ -15,6 +15,8 @@ parser.add_argument("-NFFT", type=int, default=1024, help="FFT size for the spec
parser.add_argument("-nMel",type=int,default=128,help="Number of Mel bands for the spectrogram (either 64 or 128)")
parser.add_argument("-SR",type=int,default=44100,help="Sample rate of the samples before spectrogram computation")
parser.add_argument("-sampleDur",type=float,default=1,help="Size of the signal extracts surrounding detections to be encoded")
parser.add_argument('-medfilt',action='store_true',help="If a frequency-wise median filter is desired (a larger sampleDur will be used only for a better median estimation)")
parser.set_defaults(feature=False)
parser.add_argument("-bottleneck",type=int,default=16,help='size of the auto-encoder\'s bottleneck')