IshaanMan123 commited on
Commit
fd77891
·
verified ·
1 Parent(s): 1ddd21c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -57
README.md CHANGED
@@ -1,57 +1,53 @@
1
- ---
2
- license: mit
3
- tags:
4
- - finance
5
- - stock-prediction
6
- - forex
7
- - time-series
8
- - pytorch
9
- - ensemble-learning
10
- library_name: pytorch
11
- ---
12
-
13
- # ARA AI - Financial Prediction Models
14
-
15
- Continuously trained ensemble ML models for stock and forex prediction.
16
-
17
- ## Models
18
-
19
- - **Stock Models**: Trained on random selection of stocks every 2 hours
20
- - **Forex Models**: EURUSD, GBPUSD, USDJPY trained every 2 hours
21
-
22
- ## Training Schedule
23
-
24
- Models are automatically retrained every 2 hours (12 times daily) using:
25
- - 2 years of historical data
26
- - Incremental training on existing models
27
- - Ensemble of XGBoost, LightGBM, Random Forest, Transformers, CNN-LSTM
28
-
29
- ## Usage
30
-
31
- ```python
32
- from huggingface_hub import hf_hub_download
33
- from meridianalgo.unified_ml import UnifiedStockML
34
-
35
- # Download model
36
- model_path = hf_hub_download(
37
- repo_id="MeridianAlgo/ARA.AI",
38
- filename="models/stock_AAPL.pt"
39
- )
40
-
41
- # Load and predict
42
- ml = UnifiedStockML(model_path=model_path)
43
- prediction = ml.predict('AAPL', days=5)
44
- ```
45
-
46
- ## Experiment Tracking
47
-
48
- Training metrics tracked on [Weights & Biases](https://wandb.ai)
49
-
50
- ## Repository
51
-
52
- Source code: [github.com/MeridianAlgo/AraAI](https://github.com/MeridianAlgo/AraAI)
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.