IshaanMan123 commited on
Commit
14579f1
·
verified ·
1 Parent(s): 82123dc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +57 -3
README.md CHANGED
@@ -1,3 +1,57 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.