IshaanMan123 commited on
Commit
e812a39
·
verified ·
1 Parent(s): 3e69b1b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -53
README.md CHANGED
@@ -1,53 +1,53 @@
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-12 06:24:31)
32
- - **Last Trained Symbol**: XBIO
33
- - **Validation Accuracy**: 98.5%
34
- - **Validation Loss (MSE)**: 0.00016297248657792807
35
- - **Total Unique Symbols in Training History**: N/A
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.
 
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-17 21:07:28)
32
+ - **Last Trained Symbol**: AAPL
33
+ - **Validation Accuracy**: N/A%
34
+ - **Validation Loss (MSE)**: 0.00882477033883333
35
+ - **Total Unique Symbols in Training History**: 1
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.