Lukeed commited on
Commit
aeed8a1
Β·
verified Β·
1 Parent(s): 26d7f05

Add training dates and epoch-by-epoch training log

Browse files
Files changed (1) hide show
  1. README.md +64 -7
README.md CHANGED
@@ -43,12 +43,15 @@ This repository contains the **pre-trained model artifacts** for [Nexus Shadow-Q
43
 
44
  ## πŸ—οΈ Model Architecture
45
 
46
- | Model | Type | Parameters | Purpose |
47
- |:---|:---|:---|:---|
48
- | `predictor_v3.joblib` | XGBoost Ensemble | ~500 trees | Primary directional classifier |
49
- | `nexus_lstm_v3.pth` | Bi-LSTM | ~2M | Sequence pattern recognition |
50
- | `nexus_transformer_v2.pth` | Transformer | ~152M | Long-range dependency modeling |
51
- | `feature_scaler_v3.pkl` | StandardScaler | β€” | Feature normalization state |
 
 
 
52
 
53
  ### Supporting Models (16-Model Quant Panel)
54
  - **GARCH(1,1)** β€” Volatility regime detection
@@ -74,6 +77,60 @@ This repository contains the **pre-trained model artifacts** for [Nexus Shadow-Q
74
 
75
  ---
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  ## ⚑ Quick Start
78
 
79
  ### Automatic (Recommended)
@@ -85,7 +142,7 @@ The Nexus Shadow-Quant app will **auto-pull** these models on first startup if n
85
  ### Manual
86
  ```bash
87
  pip install huggingface_hub
88
- huggingface-cli download Lukeexus/Predictor-Models --local-dir ./models
89
  ```
90
 
91
  ---
 
43
 
44
  ## πŸ—οΈ Model Architecture
45
 
46
+ | Model | Type | Parameters | Trained | Purpose |
47
+ |:---|:---|:---|:---|:---|
48
+ | `predictor_v3.joblib` | XGBoost Ensemble | ~500 trees | 15 Feb 2026, 02:31 | Primary directional classifier |
49
+ | `nexus_lstm_v3.pth` | Bi-LSTM | ~2M | 14 Feb 2026, 11:45 | Sequence pattern recognition |
50
+ | `nexus_transformer_v2.pth` | Transformer (152M) | 5 epochs | 15 Feb 2026, 04:44 | Long-range dependency modeling |
51
+ | `nexus_medium_transformer_v1.pth` | Transformer (Medium) | 5 epochs | 15 Feb 2026, 05:49 | Balanced capacity/speed |
52
+ | `nexus_small_transformer_v1.pth` | Transformer (Small) | 10 epochs | 15 Feb 2026, 05:24 | Fast inference, high accuracy |
53
+ | `nexus_transformer_pretrained.pth` | Pretrained base | β€” | 14 Feb 2026, 07:22 | Foundation weights |
54
+ | `feature_scaler_v3.pkl` | StandardScaler | β€” | 15 Feb 2026, 02:31 | Feature normalization state |
55
 
56
  ### Supporting Models (16-Model Quant Panel)
57
  - **GARCH(1,1)** β€” Volatility regime detection
 
77
 
78
  ---
79
 
80
+ ## πŸ• Training Log
81
+
82
+ <details>
83
+ <summary><strong>πŸ“ˆ Small Transformer β€” 10 epochs (15 Feb 2026)</strong></summary>
84
+
85
+ | Epoch | Accuracy | Timestamp |
86
+ |:---|:---|:---|
87
+ | 1 | 60.0% | 05:09 |
88
+ | 2 | 69.7% | 05:10 |
89
+ | 3 | 72.6% | 05:12 |
90
+ | 4 | 74.5% | 05:14 |
91
+ | 5 | 75.2% | 05:15 |
92
+ | 6 | 76.0% | 05:17 |
93
+ | 7 | 76.8% | 05:19 |
94
+ | 8 | 76.8% | 05:20 |
95
+ | 9 | 76.9% | 05:22 |
96
+ | **10** | **76.9%** βœ… | **05:24** |
97
+
98
+ </details>
99
+
100
+ <details>
101
+ <summary><strong>πŸ“ˆ Medium Transformer β€” 5 epochs (15 Feb 2026)</strong></summary>
102
+
103
+ | Epoch | Accuracy | Timestamp |
104
+ |:---|:---|:---|
105
+ | 1 | 58.1% | 05:34 |
106
+ | 2 | 69.8% | 05:37 |
107
+ | 3 | 72.7% | 05:41 |
108
+ | 4 | 74.8% | 05:45 |
109
+ | **5** | **76.2%** βœ… | **05:49** |
110
+
111
+ </details>
112
+
113
+ <details>
114
+ <summary><strong>πŸ“ˆ Nexus Transformer (152M) β€” 9 epochs (15 Feb 2026)</strong></summary>
115
+
116
+ | Epoch | Accuracy | Timestamp |
117
+ |:---|:---|:---|
118
+ | 1 | 51.3% | 06:30 |
119
+ | 2 | 52.4% | 06:51 |
120
+ | 3 | 52.4% | 07:12 |
121
+ | 4 | 53.1% | 07:32 |
122
+ | 5 | 54.6% | 07:52 |
123
+ | 6 | 55.3% | 08:13 |
124
+ | 7 | 57.3% | 08:33 |
125
+ | 8 | 58.1% | 08:54 |
126
+ | **9** | **58.7%** βœ… | **09:14** |
127
+
128
+ *Epoch 10 failed β€” weights from epoch 9 preserved.*
129
+
130
+ </details>
131
+
132
+ ---
133
+
134
  ## ⚑ Quick Start
135
 
136
  ### Automatic (Recommended)
 
142
  ### Manual
143
  ```bash
144
  pip install huggingface_hub
145
+ huggingface-cli download Lukeed/Predictor-Models --local-dir ./models
146
  ```
147
 
148
  ---