parser.add_argument('-f','--filename_path',type=str,help='Path and name of the file containing the annotations',required=True)
parser.add_argument('-f','--filename_path',type=str,help='Path and name of the file containing the annotations',required=True)
parser.add_argument('-p','--path_to_data',type=str,help='Path of the folder that contain the recodings',required=True)
parser.add_argument('-p','--path_to_data',type=str,help='Path of the folder that contain the recodings',required=True)
parser.add_argument('-d','--direction',type=str,help='Direction to export the spectrogram and the .txt files',required=True)
parser.add_argument('-d','--direction',type=str,help='Directory to wich spectrograms and .txt files will be stored',required=True)
parser.add_argument('-m','--mode',type=str,choices=['uniform','personalized'],help='Choose the mode to calculate the y and height value',required=True)
parser.add_argument('-m','--mode',type=str,choices=['uniform','personalized'],help='Choose the mode to calculate the y and height value',required=True)
parser.add_argument('--export',type=str,default=None,help='To export the position of the bounding box on the spectrogram',required=False)
parser.add_argument('--export',type=str,default=None,help='To export the position of the bounding box on the spectrogram',required=False)
parser.add_argument('-r','--ratio',type=float,default=0.7,help='Train Ratio (val = 1 - ratio)')
parser.add_argument('-r','--ratio',type=float,default=0.7,help='Train Ratio (val = 1 - ratio)')
parser.add_argument('-p','--path_to_data',type=str,help='Path of the folder that contain the .txt (ending with labels/)',required=True)
parser.add_argument('-p','--path_to_data',type=str,help='Path of the folder that contain the .txt (ending with labels/)',required=True)
parser.add_argument('-d','--direction',type=str,help='Direction of the folder to export the spectrogram and the .txt files (different from -p)',required=True)
parser.add_argument('-d','--direction',type=str,help='Directory to wich spectrogram and the .txt files will be stored (different from -p)',required=True)