Run 3 levels for Resnext and Inception
This commit is contained in:
Родитель
28ea6b5423
Коммит
067fb6ab72
|
@ -51,13 +51,50 @@ def main():
|
||||||
'--start_epoch', '0',
|
'--start_epoch', '0',
|
||||||
'--epochs', '30',
|
'--epochs', '30',
|
||||||
'--epoch_decay', '5',
|
'--epoch_decay', '5',
|
||||||
'--lr_decay', '0.75',
|
'--lr_decay', '0.7',
|
||||||
'--lr', '0.001',
|
'--lr', '0.005',
|
||||||
'--warm_up_iterations', '100',
|
'--warm_up_iterations', '10',
|
||||||
'--batch_size', '32',
|
'--batch_size', '32',
|
||||||
'--fp16',
|
'--fp16',
|
||||||
'--resume', get_best_model_path(output_dir, 'resnext_224')])
|
'--resume', get_best_model_path(output_dir, 'resnext_224')])
|
||||||
|
|
||||||
|
# Inceptionv4
|
||||||
|
# tags.append('inc4_299_init')
|
||||||
|
# params.append(['--model_type', 'inceptionv4',
|
||||||
|
# '--image_size', '299',
|
||||||
|
# '--epochs', '4',
|
||||||
|
# '--epoch_decay', '2',
|
||||||
|
# '--lr_decay', '0.94',
|
||||||
|
# '--lr', '0.05',
|
||||||
|
# '--warm_up_iterations', '0',
|
||||||
|
# '--train_logits_only',
|
||||||
|
# '--batch_size', '128',
|
||||||
|
# '--fp16'])
|
||||||
|
|
||||||
|
# tags.append('inc4_299')
|
||||||
|
# params.append(['--model_type', 'inceptionv4',
|
||||||
|
# '--image_size', '299',
|
||||||
|
# '--epochs', '25',
|
||||||
|
# '--epoch_decay', '4',
|
||||||
|
# '--lr_decay', '0.94',
|
||||||
|
# '--lr', '0.005',
|
||||||
|
# '--warm_up_iterations', '10',
|
||||||
|
# '--batch_size', '128',
|
||||||
|
# '--fp16',
|
||||||
|
# '--resume', get_best_model_path(output_dir, 'inc4_299_init')])
|
||||||
|
|
||||||
|
# tags.append('inc4_488')
|
||||||
|
# params.append(['--model_type', 'inceptionv4',
|
||||||
|
# '--image_size', '488',
|
||||||
|
# '--epochs', '50',
|
||||||
|
# '--epoch_decay', '4',
|
||||||
|
# '--lr_decay', '0.94',
|
||||||
|
# '--lr', '0.005',
|
||||||
|
# '--warm_up_iterations', '20',
|
||||||
|
# '--batch_size', '32',
|
||||||
|
# '--fp16',
|
||||||
|
# '--resume', get_best_model_path(output_dir, 'inc4_299')])
|
||||||
|
|
||||||
# Checking if everything is set up properly
|
# Checking if everything is set up properly
|
||||||
assert len(tags) == len(params)
|
assert len(tags) == len(params)
|
||||||
|
|
||||||
|
|
|
@ -94,6 +94,6 @@ def main():
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# main()
|
main()
|
||||||
sort_columns('test_result.csv')
|
sort_columns('test_result.csv')
|
||||||
fill_corrupted_files('test_result.csv', 'data/round1')
|
fill_corrupted_files('test_result.csv', 'data/round1')
|
||||||
|
|
Загрузка…
Ссылка в новой задаче