-
Notifications
You must be signed in to change notification settings - Fork 39
Log Details
Junyong Lee edited this page Feb 7, 2022
·
3 revisions
- Training and testing logs will be saved under
[LOG_ROOT]/IFAN_CVPR2021/[mode]/
:[LOG_ROOT] └── IFAN_CVPR2021 ├── ... ├── [mode] │ ├── checkpoint # model checkpoints and resume states │ ├── log # scalar/image logs for tensorboard │ ├── sample # sample images of training and validation │ ├── config # config file │ ├── result # resulting images of evaluation │ ├── cost.txt # network size and MACs measured on an image of the size (1, 3, 1280, 720) │ └── [network].py # network file └── ...
- In
./config/config.py
, you may configure the following items:-
config.log_offset
: configures[LOG_ROOT]
. Default:./logs
-
config.write_ckpt_every_epoch
: configures an epoch period for saving checkpoints, resume states and scalar logs. Default: 4 -
config.write_log_every_itr
: configures an iteration period for saving sample images. Default:{'train':200, 'valid': 1}
-
config.refresh_image_log_every_epoch
: configures an epoch period for erasing sample images. Default:{'train':20, 'valid':20}
-
- In