AbstractPhil commited on
Commit
6159803
·
verified ·
1 Parent(s): 0d41e39

Upload v5_small_20251229_160501/README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. v5_small_20251229_160501/README.md +30 -0
v5_small_20251229_160501/README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ViT-Beatrix V5 Contrarian Tower Collective
2
+
3
+ ## Run: v5_small_20251229_160501
4
+
5
+ ### Model Configuration
6
+ - **Type**: small
7
+ - **Total Parameters**: 27,959,402
8
+ - **Towers**: 4 (2 pos/neg pairs)
9
+ - **Embed Dim**: 512
10
+ - **Depth**: 2 layers per tower
11
+
12
+ ### Training Progress (Epoch 10)
13
+ - **Test Accuracy**: 26.89%
14
+ - **Best Accuracy**: 27.39%
15
+
16
+ ### Files
17
+ - `v5_small_20251229_160501_best.pth` - Best checkpoint
18
+ - `v5_small_20251229_160501_e*.pth` - Interval checkpoints
19
+ - `tensorboard/` - Training metrics
20
+
21
+ ### Usage
22
+ ```python
23
+ import torch
24
+ from vit_beatrix_v5_contrarian import BeatrixCollective, BeatrixV5Config
25
+
26
+ ckpt = torch.load("v5_small_20251229_160501_best.pth")
27
+ config = BeatrixV5Config(**ckpt['config'])
28
+ model = BeatrixCollective(config)
29
+ model.load_state_dict(ckpt['model_state_dict'])
30
+ ```