Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +22 -0
requirements.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ContextFlow RL Dependencies
|
| 2 |
+
# Install with: pip install -r requirements.txt
|
| 3 |
+
|
| 4 |
+
# Core ML
|
| 5 |
+
torch>=2.0.0
|
| 6 |
+
numpy>=1.24.0
|
| 7 |
+
scikit-learn>=1.3.0
|
| 8 |
+
|
| 9 |
+
# Data processing
|
| 10 |
+
scipy>=1.11.0
|
| 11 |
+
pandas>=2.0.0
|
| 12 |
+
|
| 13 |
+
# HuggingFace
|
| 14 |
+
huggingface_hub>=0.19.0
|
| 15 |
+
|
| 16 |
+
# Optional: Advanced features
|
| 17 |
+
# mediapipe>=0.10.0 # Hand gesture recognition
|
| 18 |
+
# aiohttp>=3.8.0 # Async HTTP requests
|
| 19 |
+
|
| 20 |
+
# Development
|
| 21 |
+
pytest>=7.4.0
|
| 22 |
+
black>=23.0.0
|