AbstractPhil commited on
Commit
1723960
Β·
verified Β·
1 Parent(s): e4c18ff

Update README - Run 20251012_152245

Browse files
Files changed (1) hide show
  1. README.md +24 -24
README.md CHANGED
@@ -12,7 +12,7 @@ datasets:
12
  metrics:
13
  - accuracy
14
  model-index:
15
- - name: David-hierarchical-progressive
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: 72.23
25
  ---
26
 
27
  # David: Multi-Scale Crystal Classifier
@@ -32,12 +32,12 @@ as class prototypes with role-weighted similarity computation (Rose Loss).
32
  ## Model Details
33
 
34
  ### Architecture
35
- - **Preset**: hierarchical_refinement
36
- - **Sharing Mode**: hierarchical
37
- - **Fusion Mode**: progressive
38
  - **Scales**: [256, 512, 768, 1024]
39
  - **Feature Dim**: 512
40
- - **Parameters**: 10,493,184
41
 
42
  ### Training Configuration
43
  - **Dataset**: AbstractPhil/imagenet-clip-features-orderly
@@ -51,15 +51,15 @@ as class prototypes with role-weighted similarity computation (Rose Loss).
51
  ## Performance
52
 
53
  ### Best Results
54
- - **Validation Accuracy**: 72.23%
55
  - **Best Epoch**: 0
56
- - **Final Train Accuracy**: 68.42%
57
 
58
  ### Per-Scale Performance
59
- - **Scale 256**: 65.87%
60
- - **Scale 512**: 69.96%
61
- - **Scale 768**: 71.41%
62
- - **Scale 1024**: 71.52%
63
 
64
 
65
  ## Usage
@@ -76,19 +76,19 @@ AbstractPhil/gated-david/
76
  β”œβ”€β”€ README.md # This file
77
  β”œβ”€β”€ best_model.json # Latest best model info
78
  β”œβ”€β”€ weights/
79
- β”‚ └── david_hierarchical/
80
- β”‚ └── 20251012_151647/
81
  β”‚ β”œβ”€β”€ MODEL_SUMMARY.txt # 🎯 Human-readable performance summary
82
  β”‚ β”œβ”€β”€ training_history.json # πŸ“ˆ Epoch-by-epoch training curve
83
- β”‚ β”œβ”€β”€ best_model_acc72.23.safetensors # ⭐ Accuracy in filename!
84
- β”‚ β”œβ”€β”€ best_model_acc72.23_metadata.json
85
  β”‚ β”œβ”€β”€ final_model.safetensors
86
  β”‚ β”œβ”€β”€ checkpoint_epoch_X_accYY.YY.safetensors
87
  β”‚ β”œβ”€β”€ david_config.json
88
  β”‚ └── train_config.json
89
  └── runs/
90
- └── david_hierarchical/
91
- └── 20251012_151647/
92
  └── events.out.tfevents.* # TensorBoard logs
93
  ```
94
 
@@ -101,9 +101,9 @@ from huggingface_hub import hf_hub_download
101
  # Browse available models in MODELS_INDEX.json first!
102
 
103
  # Specify model variant and run
104
- model_name = "david_hierarchical"
105
- run_id = "20251012_151647"
106
- accuracy = "72.23" # From MODELS_INDEX.json
107
 
108
  # Download config
109
  config_path = hf_hub_download(
@@ -170,7 +170,7 @@ score = w_anchor * sim(z, anchor) + w_need * sim(z, need) + ...
170
  ```
171
 
172
  ### Fusion Strategy
173
- **progressive**: Intelligently combines predictions from multiple scales.
174
 
175
  ## Training Details
176
 
@@ -194,7 +194,7 @@ score = w_anchor * sim(z, anchor) + w_need * sim(z, need) + ...
194
  author = {AbstractPhil},
195
  year = {2025},
196
  url = {https://huggingface.co/AbstractPhil/gated-david},
197
- note = {Run ID: 20251012_151647}
198
  }
199
  ```
200
 
@@ -209,4 +209,4 @@ Special thanks to Claude (Anthropic) for debugging assistance.
209
 
210
  ---
211
 
212
- *Generated on 2025-10-12 15:18:32*
 
12
  metrics:
13
  - accuracy
14
  model-index:
15
+ - name: David-partial_shared-hierarchical_tree
16
  results:
17
  - task:
18
  type: image-classification
 
21
  type: imagenet-1k
22
  metrics:
23
  - type: accuracy
24
+ value: 73.29
25
  ---
26
 
27
  # David: Multi-Scale Crystal Classifier
 
32
  ## Model Details
33
 
34
  ### Architecture
35
+ - **Preset**: balanced
36
+ - **Sharing Mode**: partial_shared
37
+ - **Fusion Mode**: hierarchical_tree
38
  - **Scales**: [256, 512, 768, 1024]
39
  - **Feature Dim**: 512
40
+ - **Parameters**: 8,758,271
41
 
42
  ### Training Configuration
43
  - **Dataset**: AbstractPhil/imagenet-clip-features-orderly
 
51
  ## Performance
52
 
53
  ### Best Results
54
+ - **Validation Accuracy**: 73.29%
55
  - **Best Epoch**: 0
56
+ - **Final Train Accuracy**: 70.12%
57
 
58
  ### Per-Scale Performance
59
+ - **Scale 256**: 71.33%
60
+ - **Scale 512**: 72.45%
61
+ - **Scale 768**: 72.26%
62
+ - **Scale 1024**: 73.00%
63
 
64
 
65
  ## Usage
 
76
  β”œβ”€β”€ README.md # This file
77
  β”œβ”€β”€ best_model.json # Latest best model info
78
  β”œβ”€β”€ weights/
79
+ β”‚ └── david_balanced/
80
+ β”‚ └── 20251012_152245/
81
  β”‚ β”œβ”€β”€ MODEL_SUMMARY.txt # 🎯 Human-readable performance summary
82
  β”‚ β”œβ”€β”€ training_history.json # πŸ“ˆ Epoch-by-epoch training curve
83
+ β”‚ β”œβ”€β”€ best_model_acc73.29.safetensors # ⭐ Accuracy in filename!
84
+ β”‚ β”œβ”€β”€ best_model_acc73.29_metadata.json
85
  β”‚ β”œβ”€β”€ final_model.safetensors
86
  β”‚ β”œβ”€β”€ checkpoint_epoch_X_accYY.YY.safetensors
87
  β”‚ β”œβ”€β”€ david_config.json
88
  β”‚ └── train_config.json
89
  └── runs/
90
+ └── david_balanced/
91
+ └── 20251012_152245/
92
  └── events.out.tfevents.* # TensorBoard logs
93
  ```
94
 
 
101
  # Browse available models in MODELS_INDEX.json first!
102
 
103
  # Specify model variant and run
104
+ model_name = "david_balanced"
105
+ run_id = "20251012_152245"
106
+ accuracy = "73.29" # From MODELS_INDEX.json
107
 
108
  # Download config
109
  config_path = hf_hub_download(
 
170
  ```
171
 
172
  ### Fusion Strategy
173
+ **hierarchical_tree**: Intelligently combines predictions from multiple scales.
174
 
175
  ## Training Details
176
 
 
194
  author = {AbstractPhil},
195
  year = {2025},
196
  url = {https://huggingface.co/AbstractPhil/gated-david},
197
+ note = {Run ID: 20251012_152245}
198
  }
199
  ```
200
 
 
209
 
210
  ---
211
 
212
+ *Generated on 2025-10-12 15:25:16*