Skip to content

Commit f445554

Browse files
Update README.md
1 parent 6729e5e commit f445554

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ train_data, test_data = data_loader.prepare_data(
8080
import torch
8181
# Initialize model, trainer, and train the model
8282
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
83-
print(f'Training of {device} device.')
83+
print(f'Training on {device} device.')
8484
model = TransAm(num_layers=2, dropout=0.2).to(device)
8585

8686
trainer = Trainer(model, device, learning_rate=0.001)
@@ -103,6 +103,19 @@ predictions = inferencer.predict(
103103
test_loss = inferencer.evaluate(test_data, batch_size=32)
104104
```
105105

106+
## 📈 Backtest Results
107+
108+
Evaluate the performance of TrendMaster using our comprehensive backtesting framework. Our Transformer-based model has been rigorously tested to ensure reliability and accuracy in diverse market conditions.
109+
110+
### 🔍 View Backtest Results
111+
112+
Explore detailed backtest results on our [hjAlgos Backtest Platform](https://hjalgos.hjlabs.in/backtest/).
113+
114+
![bokeh_plot (35)](https://github.com/user-attachments/assets/c2e7a910-3aa8-494d-958e-48199cf85459)
115+
116+
117+
*Sample Backtest Performance Chart*
118+
106119
## 📊 Sample Results
107120

108121
Our Transformer-based prediction model demonstrates impressive accuracy:

0 commit comments

Comments
 (0)