Default classify training to pretrained=True (#3239)

This commit is contained in:
Glenn Jocher
2023-06-18 02:31:05 +02:00
committed by GitHub
parent e78fb683f4
commit 15c90bd404
2 changed files with 3 additions and 5 deletions

View File

@ -19,7 +19,7 @@ workers: 8 # (int) number of worker threads for data loading (per RANK if DDP)
project: # (str, optional) project name
name: # (str, optional) experiment name, results saved to 'project/name' directory
exist_ok: False # (bool) whether to overwrite existing experiment
pretrained: False # (bool) whether to use a pretrained model
pretrained: True # (bool) whether to use a pretrained model
optimizer: auto # (str) optimizer to use, choices=[SGD, Adam, Adamax, AdamW, NAdam, RAdam, RMSProp, auto]
verbose: True # (bool) whether to print verbose output
seed: 0 # (int) random seed for reproducibility