Sequoia icon indicating copy to clipboard operation
Sequoia copied to clipboard

Batch norm bug - BaselineMethod, Multi-Task Synbols

Open lebrice opened this issue 5 years ago • 1 comments

sequoia_sweep --setting multi_task --max_runs 100 --dataset synbols --nb_tasks 12 \
 --method baseline --encoder resnet18 --database_path orion/multi_task_synbols_baseline.pkl \
 --project synbols_debug --monitor_training_performance True

error_multitask.pdf

lebrice avatar Mar 19 '21 19:03 lebrice

Just for more context: This appears to be caused by the input image in synbols being only 32x32, which, when using a resnet18, produces representations with only one value per channel, which raises an error when trying to use BatchNorm layer on them.

We could probably resize the image to make it bigger, but that would probably be very inefficient... I'll need to think a bit more about this.

lebrice avatar Apr 07 '21 17:04 lebrice