Update requirements.txt
Browse files- requirements.txt +35 -5
requirements.txt
CHANGED
|
@@ -6,10 +6,13 @@ scipy==1.16.3
|
|
| 6 |
# Visualization
|
| 7 |
matplotlib==3.10.0
|
| 8 |
plotly==5.24.1
|
|
|
|
| 9 |
|
| 10 |
-
# Financial Data
|
| 11 |
yfinance==0.2.66
|
| 12 |
pandas-datareader==0.10.0
|
|
|
|
|
|
|
| 13 |
|
| 14 |
# Reinforcement Learning
|
| 15 |
gymnasium==1.2.2
|
|
@@ -18,11 +21,38 @@ stable-baselines3==2.7.0
|
|
| 18 |
sb3-contrib==2.7.0
|
| 19 |
|
| 20 |
# Deep Learning Framework
|
| 21 |
-
torch==2.9.0
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
gradio==5.50.0
|
|
|
|
|
|
|
|
|
|
| 25 |
python-dotenv==1.2.1
|
| 26 |
tabulate==0.9.0
|
| 27 |
-
|
| 28 |
-
pandas-ta==0.4.71b0
|
|
|
|
| 6 |
# Visualization
|
| 7 |
matplotlib==3.10.0
|
| 8 |
plotly==5.24.1
|
| 9 |
+
seaborn==0.13.2
|
| 10 |
|
| 11 |
+
# Financial Data & Analysis
|
| 12 |
yfinance==0.2.66
|
| 13 |
pandas-datareader==0.10.0
|
| 14 |
+
pandas-ta==0.4.71b0
|
| 15 |
+
quantstats==0.0.77
|
| 16 |
|
| 17 |
# Reinforcement Learning
|
| 18 |
gymnasium==1.2.2
|
|
|
|
| 21 |
sb3-contrib==2.7.0
|
| 22 |
|
| 23 |
# Deep Learning Framework
|
| 24 |
+
torch==2.9.0+cu126
|
| 25 |
+
torchvision==0.24.0
|
| 26 |
+
torchaudio==2.9.0
|
| 27 |
+
accelerate==1.12.0
|
| 28 |
|
| 29 |
+
# Machine Learning Utilities
|
| 30 |
+
scikit-learn==1.6.1
|
| 31 |
+
optuna==4.6.0
|
| 32 |
+
|
| 33 |
+
# LLM & NLP
|
| 34 |
+
transformers==4.57.2
|
| 35 |
+
sentence-transformers==5.1.2
|
| 36 |
+
bitsandbytes==0.48.2
|
| 37 |
+
|
| 38 |
+
# LangChain Ecosystem
|
| 39 |
+
langchain==1.1.0
|
| 40 |
+
langchain-community==0.4.1
|
| 41 |
+
langchain-core==1.1.0
|
| 42 |
+
langchain-huggingface==1.1.0
|
| 43 |
+
langchain-chroma==1.0.0
|
| 44 |
+
langchain-openai==1.1.0
|
| 45 |
+
langchain-text-splitters==1.0.0
|
| 46 |
+
|
| 47 |
+
# Vector Stores
|
| 48 |
+
chromadb==1.3.5
|
| 49 |
+
faiss-cpu==1.13.0
|
| 50 |
+
|
| 51 |
+
# Web App & UI
|
| 52 |
gradio==5.50.0
|
| 53 |
+
gradio-client==1.14.0
|
| 54 |
+
|
| 55 |
+
# Utilities
|
| 56 |
python-dotenv==1.2.1
|
| 57 |
tabulate==0.9.0
|
| 58 |
+
tqdm==4.67.1
|
|
|