Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: config for matching ignite capability #344

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions src/templates/template-vision-classification/config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
#::= from_template_common ::#
lr: 0.0001 # learning rate
model: resnet18 # model name
seed: 777 # random seed
data_path: ./ # input data path
batch_size: 400 # train batch size
eval_batch_size: 400 # evaluation batch size
num_workers: 10 # number of subprocesses to use for data loading
max_epochs: 24 # number of maximum epochs
use_amp: false # use AMP (Automatic Mixed Precision)
weight_decay: 1e-4
debug: false
train_epoch_length: null
eval_epoch_length: null
filename_prefix: training
n_saved: 2
save_every_iters: 1000
patience: 10
output_dir: ./logs
log_every_iters: 10
lr: 1e-2 # learning rate
model: resnet18 # model name
Loading