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

correction get_train_annot

parent 91d5394c
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,7 @@ def process(entry, arguments, species_list): ...@@ -68,7 +68,7 @@ def process(entry, arguments, species_list):
fig = utils.create_spectrogram( fig = utils.create_spectrogram(
sig, arguments.directory, names=None, sig, arguments.directory, names=None,
window_size=arguments.window, window_size=arguments.window,
overlap=arguments.hop, cmap=arguments.cmap) overlap=arguments.hop, cmap=arguments.cmap, minimum=arguments.minimum)
for _, row in table.iterrows(): for _, row in table.iterrows():
specie = row.species specie = row.species
...@@ -183,6 +183,8 @@ if __name__ == '__main__': ...@@ -183,6 +183,8 @@ if __name__ == '__main__':
parser.add_argument('--test', action='store_const', const=1, parser.add_argument('--test', action='store_const', const=1,
help='Split into train/test/val. 1 - Ratio / 2 for test and' help='Split into train/test/val. 1 - Ratio / 2 for test and'
' same for validation', default=None) ' same for validation', default=None)
parser.add_argument('--minimum', type=int,
help='If True, vmin will be stft.mean(), else stft.min()', default=True)
args = parser.parse_args() args = parser.parse_args()
# Load the data and put it into a DataFrame # Load the data and put it into a DataFrame
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment