AbstractPhil commited on
Commit
198bc25
·
verified ·
1 Parent(s): 02d1908

Upload symbolic_vitb32_head_best.config.json

Browse files
symbolic_vitb32_head_best.config.json ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "device": "cuda",
3
+ "seed": 42,
4
+ "precision": "fp32",
5
+ "hf_clip_id": "openai/clip-vit-base-patch32",
6
+ "freeze_encoder": true,
7
+ "normalize_output": true,
8
+ "dataset": "cifar100",
9
+ "data_root": "./data",
10
+ "image_size": 224,
11
+ "clip_mean": [
12
+ 0.48145466,
13
+ 0.4578275,
14
+ 0.40821073
15
+ ],
16
+ "clip_std": [
17
+ 0.26862954,
18
+ 0.26130258,
19
+ 0.27577711
20
+ ],
21
+ "train_aug": true,
22
+ "train_crop_scale": [
23
+ 0.9,
24
+ 1.0
25
+ ],
26
+ "hflip_p": 0.5,
27
+ "vocab_repo": "AbstractPhil/geometric-vocab-512d",
28
+ "vocab_split": "wordnet_eng",
29
+ "vocab_dim_override": 512,
30
+ "crystal_dims": 100,
31
+ "role_index": {
32
+ "anchor": 0,
33
+ "support": 1,
34
+ "contrast": 2,
35
+ "purpose": 3,
36
+ "observer": 4
37
+ },
38
+ "classes": 100,
39
+ "classes_per_penta": 2,
40
+ "penta_branches": 50,
41
+ "pentachora_blocks": 4,
42
+ "temperature": 0.07,
43
+ "batch_size": 256,
44
+ "epochs": 20,
45
+ "lr": 0.0003,
46
+ "weight_decay": 0.0001,
47
+ "label_smoothing": 0.0,
48
+ "use_cosine_sched": true,
49
+ "warmup_steps": 250,
50
+ "max_steps": null,
51
+ "amp": true,
52
+ "grad_clip_norm": null,
53
+ "log_every": 25,
54
+ "auto_train": false,
55
+ "num_workers": 2,
56
+ "pin_memory": false,
57
+ "persistent_workers": false,
58
+ "ckpt_dir": "./checkpoints",
59
+ "run_name": "symbolic_vitb32",
60
+ "save_latest": true,
61
+ "save_best": true,
62
+ "resume": true,
63
+ "resume_which": "best",
64
+ "resume_source": "auto",
65
+ "hf_enable": true,
66
+ "hf_repo_id": "AbstractPhil/geoclip-vit-base-patch-32-100d",
67
+ "hf_branch": "main",
68
+ "hf_private": false,
69
+ "hf_push_latest": false,
70
+ "hf_push_best": true,
71
+ "hf_create": true,
72
+ "hf_token_env": [
73
+ "HF_TOKEN",
74
+ "HUGGINGFACE_HUB_TOKEN"
75
+ ]
76
+ }