Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,57 +1,53 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
-
|
| 6 |
-
-
|
| 7 |
-
- time-series
|
| 8 |
-
- pytorch
|
| 9 |
-
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
-
|
| 26 |
-
-
|
| 27 |
-
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
#
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
#
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
## Disclaimer
|
| 55 |
-
|
| 56 |
-
These models are for educational and research purposes only. Not financial advice.
|
| 57 |
-
Past performance does not guarantee future results.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: mit
|
| 4 |
+
tags:
|
| 5 |
+
- financial-forecasting
|
| 6 |
+
- stock-prediction
|
| 7 |
+
- time-series
|
| 8 |
+
- pytorch
|
| 9 |
+
- ara-ai
|
| 10 |
+
- ensemble-learning
|
| 11 |
+
datasets:
|
| 12 |
+
- yfinance
|
| 13 |
+
metrics:
|
| 14 |
+
- accuracy
|
| 15 |
+
- mse
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Ara AI (ARA.AI) - Financial Prediction Engine
|
| 19 |
+
|
| 20 |
+
## Overview
|
| 21 |
+
Ara AI is an advanced financial prediction system designed for multi-asset forecasting. This repository contains the latest weights for the ensemble models trained on market data.
|
| 22 |
+
|
| 23 |
+
## Model Architecture
|
| 24 |
+
The system employs a sophisticated ensemble architecture:
|
| 25 |
+
- **Feature Extraction**: 44+ technical indicators (RSI, MACD, Bollinger Bands, ATR, etc.)
|
| 26 |
+
- **Neural Core**: A large PyTorch model with 4M+ parameters
|
| 27 |
+
- **Attention Mechanism**: Multi-head attention for identifying key temporal features
|
| 28 |
+
- **Ensemble Heads**: Specialized prediction heads inspired by XGBoost, LightGBM, Random Forest, and Gradient Boosting
|
| 29 |
+
- **Dynamic Weighting**: Softmax-based attention weights for weighted prediction averaging
|
| 30 |
+
|
| 31 |
+
## Latest Training Stats (2026-01-10 21:11:54)
|
| 32 |
+
- **Last Trained Symbol**: Initialization
|
| 33 |
+
- **Validation Accuracy**: N/A%
|
| 34 |
+
- **Validation Loss (MSE)**: N/A
|
| 35 |
+
- **Total Unique Symbols in Training History**: 0
|
| 36 |
+
|
| 37 |
+
## Continuous Training
|
| 38 |
+
This model is part of a self-evolving system. It is retrained daily on a rotation of 6,800+ tickers and 20+ forex pairs to maintain high accuracy across different market conditions and time horizons (1D, 1H).
|
| 39 |
+
|
| 40 |
+
## Usage
|
| 41 |
+
### Loading the model
|
| 42 |
+
```python
|
| 43 |
+
import torch
|
| 44 |
+
from meridianalgo.unified_ml import UnifiedStockML
|
| 45 |
+
|
| 46 |
+
# Download the model file from this repo first
|
| 47 |
+
ml = UnifiedStockML(model_path="stock_AAPL.pt")
|
| 48 |
+
prediction = ml.predict_ultimate("AAPL", days=5)
|
| 49 |
+
print(prediction)
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
## Disclaimer
|
| 53 |
+
**Not Financial Advice.** This software is for educational purposes only. Trading involves significant risk. The authors are not responsible for any financial losses incurred.
|
|
|
|
|
|
|
|
|
|
|
|