Skip to content

Add comments for each parameter in config.yaml #293

@vfdev-5

Description

@vfdev-5
Member

Right now we can see the following in the config.yaml:

seed: 777
data_path: ./
train_batch_size: 32
eval_batch_size: 32
num_workers: 4
max_epochs: 20
use_amp: false
debug: false
filename_prefix: training
n_saved: 2
save_every_iters: 1000
patience: 3
output_dir: ./logs
log_every_iters: 10
lr: 0.0001
model: resnet18

and it is unclear what each parameter is responsible for.

The idea is to add comments for each parameter like below

seed: 777  # random seed
data_path: ./  # input data path 
train_batch_size: 32
eval_batch_size: 32
num_workers: 4
max_epochs: 20
use_amp: false
debug: false
filename_prefix: training  # training checkpoint filename prefix
n_saved: 2  # number of saved checkpoints
save_every_iters: 1000  # training checkpoint frequency
patience: 3  # early stopping patience parameter
output_dir: ./logs  # output folder
log_every_iters: 10
lr: 0.0001
model: resnet18

Activity

added a commit that references this issue on Sep 13, 2023
added a commit that references this issue on Sep 18, 2023
added a commit that references this issue on Sep 19, 2023
added a commit that references this issue on Sep 19, 2023
puhuk

puhuk commented on Sep 22, 2023

@puhuk
Contributor

@vfdev-5 @guptaaryan16 Will that be necessary to add comments for other yaml files from ci-configs like this?

guptaaryan16

guptaaryan16 commented on Sep 22, 2023

@guptaaryan16
Contributor

No @puhuk ci-configs are for testing templates in the CI as you don't need to add them here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requesthelp wantedExtra attention is needed

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @vfdev-5@puhuk@guptaaryan16

        Issue actions

          Add comments for each parameter in config.yaml · Issue #293 · pytorch-ignite/code-generator