Skip to content
Snippets Groups Projects
Commit ae69a8db authored by Stephane Chavin's avatar Stephane Chavin
Browse files

correction vmin

parent 390249f7
No related branches found
No related tags found
No related merge requests found
...@@ -280,7 +280,7 @@ def parse_opt(): ...@@ -280,7 +280,7 @@ def parse_opt():
help="Colormap used for the spectrograms",type=str) help="Colormap used for the spectrograms",type=str)
parser.add_argument('--window', default=1024, help="Window size for each spectrogram for detection",type=int) parser.add_argument('--window', default=1024, help="Window size for each spectrogram for detection",type=int)
parser.add_argument('--hop', default=0.5, help="Hop lenght for each spectrogram for detection",type=float) parser.add_argument('--hop', default=0.5, help="Hop lenght for each spectrogram for detection",type=float)
parser.add_argument('--vmin', type=str, help='If vmin == True, then the spectrogram minimum color' parser.add_argument('--minimum', type=str, help='If True, then the spectrogram minimum color'
' will be stft.mean(). If False stft.min()', default=True) ' will be stft.mean(). If False stft.min()', default=True)
parser.add_argument('--hide-conf', default=False, action='store_true', help='hide confidences') parser.add_argument('--hide-conf', default=False, action='store_true', help='hide confidences')
parser.add_argument('--half', action='store_true', help='use FP16 half-precision inference') parser.add_argument('--half', action='store_true', help='use FP16 half-precision inference')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment