AbstractPhil commited on
Commit
99fcf54
Β·
verified Β·
1 Parent(s): 8fd485e

Update README - Run 20251104_144102

Browse files
Files changed (1) hide show
  1. README.md +27 -27
README.md CHANGED
@@ -12,7 +12,7 @@ datasets:
12
  metrics:
13
  - accuracy
14
  model-index:
15
- - name: David-partial_shared-cantor_scale
16
  results:
17
  - task:
18
  type: image-classification
@@ -21,7 +21,7 @@ model-index:
21
  type: imagenet-1k
22
  metrics:
23
  - type: accuracy
24
- value: 84.92
25
  ---
26
 
27
  # David: Multi-Scale Feature Classifier
@@ -32,12 +32,12 @@ as class prototypes with role-weighted similarity computation (Rose Loss).
32
  ## Model Details
33
 
34
  ### Architecture
35
- - **Preset**: clip_vit_bigg14_cantor
36
- - **Sharing Mode**: partial_shared
37
  - **Fusion Mode**: cantor_scale
38
  - **Scales**: [384, 512, 768, 1024, 1280, 1536, 1792, 2048]
39
  - **Feature Dim**: 1280
40
- - **Parameters**: 82,601,993
41
 
42
  ### Training Configuration
43
  - **Dataset**: AbstractPhil/imagenet-clip-features-orderly
@@ -51,19 +51,19 @@ as class prototypes with role-weighted similarity computation (Rose Loss).
51
  ## Performance
52
 
53
  ### Best Results
54
- - **Validation Accuracy**: 84.92%
55
- - **Best Epoch**: 4
56
- - **Final Train Accuracy**: 92.33%
57
 
58
  ### Per-Scale Performance
59
- - **Scale 384**: 84.71%
60
- - **Scale 512**: 84.68%
61
- - **Scale 768**: 84.66%
62
- - **Scale 1024**: 84.70%
63
- - **Scale 1280**: 84.47%
64
- - **Scale 1536**: 84.35%
65
- - **Scale 1792**: 84.07%
66
- - **Scale 2048**: 84.28%
67
 
68
 
69
  ## Usage
@@ -80,19 +80,19 @@ AbstractPhil/gated-david/
80
  β”œβ”€β”€ README.md # This file
81
  β”œβ”€β”€ best_model.json # Latest best model info
82
  β”œβ”€β”€ weights/
83
- β”‚ └── david_clip_vit_bigg14_cantor/
84
- β”‚ └── 20251104_140742/
85
  β”‚ β”œβ”€β”€ MODEL_SUMMARY.txt # 🎯 Human-readable performance summary
86
  β”‚ β”œβ”€β”€ training_history.json # πŸ“ˆ Epoch-by-epoch training curve
87
- β”‚ β”œβ”€β”€ best_model_acc84.92.safetensors # ⭐ Accuracy in filename!
88
- β”‚ β”œβ”€β”€ best_model_acc84.92_metadata.json
89
  β”‚ β”œβ”€β”€ final_model.safetensors
90
  β”‚ β”œβ”€β”€ checkpoint_epoch_X_accYY.YY.safetensors
91
  β”‚ β”œβ”€β”€ david_config.json
92
  β”‚ └── train_config.json
93
  └── runs/
94
- └── david_clip_vit_bigg14_cantor/
95
- └── 20251104_140742/
96
  └── events.out.tfevents.* # TensorBoard logs
97
  ```
98
 
@@ -105,9 +105,9 @@ from huggingface_hub import hf_hub_download
105
  # Browse available models in MODELS_INDEX.json first!
106
 
107
  # Specify model variant and run
108
- model_name = "david_clip_vit_bigg14_cantor"
109
- run_id = "20251104_140742"
110
- accuracy = "84.92" # From MODELS_INDEX.json
111
 
112
  # Download config
113
  config_path = hf_hub_download(
@@ -198,7 +198,7 @@ score = w_anchor * sim(z, anchor) + w_need * sim(z, need) + ...
198
  author = {AbstractPhil},
199
  year = {2025},
200
  url = {https://huggingface.co/AbstractPhil/gated-david},
201
- note = {Run ID: 20251104_140742}
202
  }
203
  ```
204
 
@@ -213,4 +213,4 @@ Special thanks to Claude (Anthropic) for debugging assistance.
213
 
214
  ---
215
 
216
- *Generated on 2025-11-04 14:34:13*
 
12
  metrics:
13
  - accuracy
14
  model-index:
15
+ - name: David-decoupled-cantor_scale
16
  results:
17
  - task:
18
  type: image-classification
 
21
  type: imagenet-1k
22
  metrics:
23
  - type: accuracy
24
+ value: 84.30
25
  ---
26
 
27
  # David: Multi-Scale Feature Classifier
 
32
  ## Model Details
33
 
34
  ### Architecture
35
+ - **Preset**: clip_vit_bigg14_cantor_decoupled
36
+ - **Sharing Mode**: decoupled
37
  - **Fusion Mode**: cantor_scale
38
  - **Scales**: [384, 512, 768, 1024, 1280, 1536, 1792, 2048]
39
  - **Feature Dim**: 1280
40
+ - **Parameters**: 70,207,625
41
 
42
  ### Training Configuration
43
  - **Dataset**: AbstractPhil/imagenet-clip-features-orderly
 
51
  ## Performance
52
 
53
  ### Best Results
54
+ - **Validation Accuracy**: 84.30%
55
+ - **Best Epoch**: 0
56
+ - **Final Train Accuracy**: 83.51%
57
 
58
  ### Per-Scale Performance
59
+ - **Scale 384**: 82.25%
60
+ - **Scale 512**: 82.68%
61
+ - **Scale 768**: 83.39%
62
+ - **Scale 1024**: 83.31%
63
+ - **Scale 1280**: 83.26%
64
+ - **Scale 1536**: 83.20%
65
+ - **Scale 1792**: 83.19%
66
+ - **Scale 2048**: 83.25%
67
 
68
 
69
  ## Usage
 
80
  β”œβ”€β”€ README.md # This file
81
  β”œβ”€β”€ best_model.json # Latest best model info
82
  β”œβ”€β”€ weights/
83
+ β”‚ └── david_clip_vit_bigg14_cantor_decoupled/
84
+ β”‚ └── 20251104_144102/
85
  β”‚ β”œβ”€β”€ MODEL_SUMMARY.txt # 🎯 Human-readable performance summary
86
  β”‚ β”œβ”€β”€ training_history.json # πŸ“ˆ Epoch-by-epoch training curve
87
+ β”‚ β”œβ”€β”€ best_model_acc84.30.safetensors # ⭐ Accuracy in filename!
88
+ β”‚ β”œβ”€β”€ best_model_acc84.30_metadata.json
89
  β”‚ β”œβ”€β”€ final_model.safetensors
90
  β”‚ β”œβ”€β”€ checkpoint_epoch_X_accYY.YY.safetensors
91
  β”‚ β”œβ”€β”€ david_config.json
92
  β”‚ └── train_config.json
93
  └── runs/
94
+ └── david_clip_vit_bigg14_cantor_decoupled/
95
+ └── 20251104_144102/
96
  └── events.out.tfevents.* # TensorBoard logs
97
  ```
98
 
 
105
  # Browse available models in MODELS_INDEX.json first!
106
 
107
  # Specify model variant and run
108
+ model_name = "david_clip_vit_bigg14_cantor_decoupled"
109
+ run_id = "20251104_144102"
110
+ accuracy = "84.30" # From MODELS_INDEX.json
111
 
112
  # Download config
113
  config_path = hf_hub_download(
 
198
  author = {AbstractPhil},
199
  year = {2025},
200
  url = {https://huggingface.co/AbstractPhil/gated-david},
201
+ note = {Run ID: 20251104_144102}
202
  }
203
  ```
204
 
 
213
 
214
  ---
215
 
216
+ *Generated on 2025-11-04 14:45:04*