Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +38 -0
requirements.txt
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies for Isaac Sim Robotics Qwen model
|
2 |
+
torch>=2.0.0
|
3 |
+
transformers>=4.35.0
|
4 |
+
tokenizers>=0.14.0
|
5 |
+
accelerate>=0.20.0
|
6 |
+
|
7 |
+
# CTransformers support (alternative inference)
|
8 |
+
ctransformers>=0.2.0
|
9 |
+
|
10 |
+
# Isaac Sim integration
|
11 |
+
omni-isaac-sim>=5.0.0
|
12 |
+
omni-isaac-sim-2023.1.1
|
13 |
+
|
14 |
+
# Optional: GGUF conversion support
|
15 |
+
llama-cpp-python>=0.2.0
|
16 |
+
|
17 |
+
# Utilities
|
18 |
+
numpy>=1.21.0
|
19 |
+
scipy>=1.7.0
|
20 |
+
matplotlib>=3.5.0
|
21 |
+
pillow>=8.3.0
|
22 |
+
|
23 |
+
# Development and testing
|
24 |
+
pytest>=6.0.0
|
25 |
+
black>=22.0.0
|
26 |
+
flake8>=4.0.0
|
27 |
+
|
28 |
+
# Documentation
|
29 |
+
sphinx>=4.0.0
|
30 |
+
myst-parser>=0.17.0
|
31 |
+
|
32 |
+
# Hugging Face utilities
|
33 |
+
huggingface-hub>=0.16.0
|
34 |
+
datasets>=2.10.0
|
35 |
+
|
36 |
+
# Optional: Advanced features
|
37 |
+
bitsandbytes>=0.41.0 # For 8-bit quantization
|
38 |
+
optimum>=1.12.0 # For optimization
|