AbstractPhil commited on
Commit
df1cad1
Β·
verified Β·
1 Parent(s): 125a191

Update README - Run 20251012_221046

Browse files
Files changed (1) hide show
  1. README.md +24 -26
README.md CHANGED
@@ -12,7 +12,7 @@ datasets:
12
  metrics:
13
  - accuracy
14
  model-index:
15
- - name: David-partial_shared-hierarchical_tree
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: 74.23
25
  ---
26
 
27
  # David: Multi-Scale Feature Classifier
@@ -36,12 +36,12 @@ exist simultaneously in the same shared space with the correct checks and spacin
36
  ## Model Details
37
 
38
  ### Architecture
39
- - **Preset**: balanced
40
- - **Sharing Mode**: partial_shared
41
- - **Fusion Mode**: hierarchical_tree
42
- - **Scales**: [256, 512, 768, 1024]
43
  - **Feature Dim**: 512
44
- - **Parameters**: 8,758,271
45
 
46
  ### Training Configuration
47
  - **Dataset**: AbstractPhil/imagenet-clip-features-orderly
@@ -55,14 +55,12 @@ exist simultaneously in the same shared space with the correct checks and spacin
55
  ## Performance
56
 
57
  ### Best Results
58
- - **Validation Accuracy**: 74.23%
59
- - **Best Epoch**: 7
60
- - **Final Train Accuracy**: 80.85%
61
 
62
  ### Per-Scale Performance
63
- - **Scale 256**: 71.20%
64
- - **Scale 512**: 74.21%
65
- - **Scale 768**: 74.31%
66
 
67
 
68
  ## Usage
@@ -79,19 +77,19 @@ AbstractPhil/david-shared-space/
79
  β”œβ”€β”€ README.md # This file
80
  β”œβ”€β”€ best_model.json # Latest best model info
81
  β”œβ”€β”€ weights/
82
- β”‚ └── david_balanced/
83
- β”‚ └── 20251012_210041/
84
  β”‚ β”œβ”€β”€ MODEL_SUMMARY.txt # 🎯 Human-readable performance summary
85
  β”‚ β”œβ”€β”€ training_history.json # πŸ“ˆ Epoch-by-epoch training curve
86
- β”‚ β”œβ”€β”€ best_model_acc74.23.safetensors # ⭐ Accuracy in filename!
87
- β”‚ β”œβ”€β”€ best_model_acc74.23_metadata.json
88
  β”‚ β”œβ”€β”€ final_model.safetensors
89
  β”‚ β”œβ”€β”€ checkpoint_epoch_X_accYY.YY.safetensors
90
  β”‚ β”œβ”€β”€ david_config.json
91
  β”‚ └── train_config.json
92
  └── runs/
93
- └── david_balanced/
94
- └── 20251012_210041/
95
  └── events.out.tfevents.* # TensorBoard logs
96
  ```
97
 
@@ -104,9 +102,9 @@ from huggingface_hub import hf_hub_download
104
  # Browse available models in MODELS_INDEX.json first!
105
 
106
  # Specify model variant and run
107
- model_name = "david_balanced"
108
- run_id = "20251012_210041"
109
- accuracy = "74.23" # From MODELS_INDEX.json
110
 
111
  # Download config
112
  config_path = hf_hub_download(
@@ -155,7 +153,7 @@ with torch.no_grad():
155
  ## Architecture Overview
156
 
157
  ### Multi-Scale Processing
158
- David processes inputs at multiple scales (256, 512, 768, 1024),
159
  allowing it to capture both coarse and fine-grained features.
160
 
161
  ### Shared Representation Space
@@ -176,7 +174,7 @@ score = w_anchor * sim(z, anchor) + w_need * sim(z, need) + ...
176
  ```
177
 
178
  ### Fusion Strategy
179
- **hierarchical_tree**: Intelligently combines predictions from multiple scales.
180
 
181
  ## Training Details
182
 
@@ -200,7 +198,7 @@ score = w_anchor * sim(z, anchor) + w_need * sim(z, need) + ...
200
  author = {AbstractPhil},
201
  year = {2025},
202
  url = {https://huggingface.co/AbstractPhil/david-shared-space},
203
- note = {Run ID: 20251012_210041}
204
  }
205
  ```
206
 
@@ -215,4 +213,4 @@ Special thanks to Claude (Anthropic) for debugging assistance.
215
 
216
  ---
217
 
218
- *Generated on 2025-10-12 21:45:35*
 
12
  metrics:
13
  - accuracy
14
  model-index:
15
+ - name: David-decoupled-deep_efficiency
16
  results:
17
  - task:
18
  type: image-classification
 
21
  type: imagenet-1k
22
  metrics:
23
  - type: accuracy
24
+ value: 62.52
25
  ---
26
 
27
  # David: Multi-Scale Feature Classifier
 
36
  ## Model Details
37
 
38
  ### Architecture
39
+ - **Preset**: high_accuracy
40
+ - **Sharing Mode**: decoupled
41
+ - **Fusion Mode**: deep_efficiency
42
+ - **Scales**: [256, 512, 768, 1024, 1280]
43
  - **Feature Dim**: 512
44
+ - **Parameters**: 14,877,593
45
 
46
  ### Training Configuration
47
  - **Dataset**: AbstractPhil/imagenet-clip-features-orderly
 
55
  ## Performance
56
 
57
  ### Best Results
58
+ - **Validation Accuracy**: 62.52%
59
+ - **Best Epoch**: 0
60
+ - **Final Train Accuracy**: 56.43%
61
 
62
  ### Per-Scale Performance
63
+ - **Scale 256**: 62.52%
 
 
64
 
65
 
66
  ## Usage
 
77
  β”œβ”€β”€ README.md # This file
78
  β”œβ”€β”€ best_model.json # Latest best model info
79
  β”œβ”€β”€ weights/
80
+ β”‚ └── david_high_accuracy/
81
+ β”‚ └── 20251012_221046/
82
  β”‚ β”œβ”€β”€ MODEL_SUMMARY.txt # 🎯 Human-readable performance summary
83
  β”‚ β”œβ”€β”€ training_history.json # πŸ“ˆ Epoch-by-epoch training curve
84
+ β”‚ β”œβ”€β”€ best_model_acc62.52.safetensors # ⭐ Accuracy in filename!
85
+ β”‚ β”œβ”€β”€ best_model_acc62.52_metadata.json
86
  β”‚ β”œβ”€β”€ final_model.safetensors
87
  β”‚ β”œβ”€β”€ checkpoint_epoch_X_accYY.YY.safetensors
88
  β”‚ β”œβ”€β”€ david_config.json
89
  β”‚ └── train_config.json
90
  └── runs/
91
+ └── david_high_accuracy/
92
+ └── 20251012_221046/
93
  └── events.out.tfevents.* # TensorBoard logs
94
  ```
95
 
 
102
  # Browse available models in MODELS_INDEX.json first!
103
 
104
  # Specify model variant and run
105
+ model_name = "david_high_accuracy"
106
+ run_id = "20251012_221046"
107
+ accuracy = "62.52" # From MODELS_INDEX.json
108
 
109
  # Download config
110
  config_path = hf_hub_download(
 
153
  ## Architecture Overview
154
 
155
  ### Multi-Scale Processing
156
+ David processes inputs at multiple scales (256, 512, 768, 1024, 1280),
157
  allowing it to capture both coarse and fine-grained features.
158
 
159
  ### Shared Representation Space
 
174
  ```
175
 
176
  ### Fusion Strategy
177
+ **deep_efficiency**: Intelligently combines predictions from multiple scales.
178
 
179
  ## Training Details
180
 
 
198
  author = {AbstractPhil},
199
  year = {2025},
200
  url = {https://huggingface.co/AbstractPhil/david-shared-space},
201
+ note = {Run ID: 20251012_221046}
202
  }
203
  ```
204
 
 
213
 
214
  ---
215
 
216
+ *Generated on 2025-10-12 22:15:33*