Upload config.json with huggingface_hub
Browse files- config.json +43 -0
config.json
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"augmentations": "light",
|
3 |
+
"dataset": "DF20M",
|
4 |
+
"architecture": "vit_base_patch16_224",
|
5 |
+
"train": null,
|
6 |
+
"loss": "CrossEntropyLoss",
|
7 |
+
"optimizer": "SGD",
|
8 |
+
"scheduler": "plateau",
|
9 |
+
"epochs": 1,
|
10 |
+
"learning_rate": 0.01,
|
11 |
+
"batch_size": 64,
|
12 |
+
"accumulation_steps": 1,
|
13 |
+
"random_seed": 777,
|
14 |
+
"workers": 12,
|
15 |
+
"multigpu": false,
|
16 |
+
"tags": [
|
17 |
+
"DanishFungi2023",
|
18 |
+
"224x224",
|
19 |
+
"Debug"
|
20 |
+
],
|
21 |
+
"root_path": "../",
|
22 |
+
"run_name": "vit_base_patch16_224-CrossEntropyLoss-light",
|
23 |
+
"exp_name": "exp13",
|
24 |
+
"exp_path": "../runs/vit_base_patch16_224-CrossEntropyLoss-light/exp13",
|
25 |
+
"training_samples": 32692,
|
26 |
+
"test_samples": 3701,
|
27 |
+
"mean": [
|
28 |
+
0.5,
|
29 |
+
0.5,
|
30 |
+
0.5
|
31 |
+
],
|
32 |
+
"std": [
|
33 |
+
0.5,
|
34 |
+
0.5,
|
35 |
+
0.5
|
36 |
+
],
|
37 |
+
"input_size": [
|
38 |
+
3,
|
39 |
+
224,
|
40 |
+
224
|
41 |
+
],
|
42 |
+
"num_classes": 182
|
43 |
+
}
|