kiyoonkim commited on
Commit
2b12a2a
1 Parent(s): 1d83e30

Upload config.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.yaml +133 -0
config.yaml ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ callbacks:
2
+ hf_uploader:
3
+ _target_: mlproject.callbacks.UploadCheckpointsToHuggingFace
4
+ repo_name: aae
5
+ repo_owner: kiyoonkim
6
+ code_dir: /home/kiyoon/project/mlproject
7
+ current_experiment_dir: /disk/scratch2/experiments/aae
8
+ data_dir: /disk/scratch_fast1/datasets
9
+ dataloader:
10
+ _target_: torch.utils.data.dataloader.DataLoader
11
+ batch_sampler: null
12
+ batch_size: 8
13
+ collate_fn: null
14
+ dataset: null
15
+ drop_last: false
16
+ generator: null
17
+ multiprocessing_context: null
18
+ num_workers: 4
19
+ persistent_workers: false
20
+ pin_memory: true
21
+ pin_memory_device: ''
22
+ prefetch_factor: null
23
+ sampler: null
24
+ shuffle: true
25
+ timeout: 0.0
26
+ worker_init_fn: null
27
+ dataset:
28
+ _target_: mlproject.data.build_gulp_dataset
29
+ data_dir: /disk/scratch_fast1/datasets
30
+ dataset_name: hmdb51-gulprgb
31
+ sets_to_include: null
32
+ download_checkpoint_with_name: null
33
+ download_latest: true
34
+ eval_batch_size: 8
35
+ exp_name: aae
36
+ freeze_backbone: false
37
+ hf_repo_dir: /disk/scratch2/experiments/aae/repo
38
+ hf_username: kiyoonkim
39
+ learner:
40
+ _target_: mlproject.boilerplate.Learner
41
+ callbacks: null
42
+ checkpoint_after_validation: true
43
+ checkpoint_every_n_steps: 500
44
+ evaluate_every_n_epochs: null
45
+ evaluate_every_n_steps: 500
46
+ evaluators: null
47
+ experiment_dir: /disk/scratch2/experiments/aae/repo
48
+ experiment_name: aae
49
+ limit_train_iters: null
50
+ limit_val_iters: null
51
+ model: null
52
+ print_model_parameters: false
53
+ resume: false
54
+ test_dataloaders: null
55
+ train_dataloader: null
56
+ train_epochs: null
57
+ train_iters: 10000
58
+ trainers: null
59
+ val_dataloaders: null
60
+ model:
61
+ _target_: mlproject.models.build_tsm_model
62
+ model_name: tsm_resnet50
63
+ num_classes: 51
64
+ num_frames: 8
65
+ pretrained: kinetics400
66
+ num_workers: 4
67
+ optimizer:
68
+ _partial_: true
69
+ _target_: torch.optim.adamw.AdamW
70
+ amsgrad: false
71
+ betas:
72
+ - 0.9
73
+ - 0.999
74
+ capturable: false
75
+ differentiable: false
76
+ eps: 1.0e-08
77
+ foreach: null
78
+ fused: null
79
+ lr: 1.0e-05
80
+ maximize: false
81
+ weight_decay: 1.0e-05
82
+ print_config: false
83
+ repo_path: kiyoonkim/aae
84
+ resume: false
85
+ resume_from_checkpoint: null
86
+ root_experiment_dir: /disk/scratch2/experiments
87
+ scheduler:
88
+ _partial_: true
89
+ _target_: timm.scheduler.cosine_lr.CosineLRScheduler
90
+ cycle_decay: 1.0
91
+ cycle_limit: 1
92
+ cycle_mul: 1.0
93
+ initialize: true
94
+ k_decay: 1.0
95
+ lr_min: 0.0
96
+ noise_pct: 0.67
97
+ noise_range_t: null
98
+ noise_seed: 42
99
+ noise_std: 1.0
100
+ t_in_epochs: true
101
+ warmup_lr_init: 0
102
+ warmup_prefix: false
103
+ warmup_t: 0
104
+ seed: 42
105
+ test: false
106
+ train: true
107
+ train_batch_size: 8
108
+ wandb_args:
109
+ _target_: wandb.sdk.wandb_init.init
110
+ allow_val_change: null
111
+ anonymous: null
112
+ config: null
113
+ config_exclude_keys: null
114
+ config_include_keys: null
115
+ dir: /disk/scratch2/experiments/aae
116
+ entity: null
117
+ force: null
118
+ group: null
119
+ id: null
120
+ job_type: null
121
+ magic: null
122
+ mode: null
123
+ monitor_gym: null
124
+ name: null
125
+ notes: null
126
+ project: simple-tutorial
127
+ reinit: null
128
+ resume: allow
129
+ save_code: true
130
+ settings: null
131
+ sync_tensorboard: null
132
+ tags: null
133
+ tensorboard: null