Shanmuk4622 commited on
Commit
87bc4a2
·
verified ·
1 Parent(s): 4f47847

epoch 1 upload cifar10/baseline_fixed

Browse files
Files changed (1) hide show
  1. cifar10/baseline_fixed/config.json +30 -0
cifar10/baseline_fixed/config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "variant_name": "baseline_fixed",
3
+ "cfg": {
4
+ "amp": false,
5
+ "grad_accum": 1,
6
+ "l1_lambda": 0.0,
7
+ "adaptive_lr": false,
8
+ "lr": 0.05
9
+ },
10
+ "data_meta": {
11
+ "dataset_name": "cifar10",
12
+ "source": "huggingface",
13
+ "train_size": 50000,
14
+ "val_size": 10000,
15
+ "num_classes": 10,
16
+ "class_names": [
17
+ "airplane",
18
+ "automobile",
19
+ "bird",
20
+ "cat",
21
+ "deer",
22
+ "dog",
23
+ "frog",
24
+ "horse",
25
+ "ship",
26
+ "truck"
27
+ ],
28
+ "image_size": 224
29
+ }
30
+ }