Upload folder using huggingface_hub
Browse files- requirements.txt +20 -0
requirements.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core runtime
|
| 2 |
+
numpy==1.26.4
|
| 3 |
+
Pillow==11.3.0
|
| 4 |
+
requests==2.32.3
|
| 5 |
+
|
| 6 |
+
# Hugging Face / PyTorch
|
| 7 |
+
# Current environment uses torch 2.6.0+cu124; pin the base version here.
|
| 8 |
+
# If you need the CUDA 12.4 wheel specifically, install it from the official PyTorch index.
|
| 9 |
+
torch==2.6.0
|
| 10 |
+
transformers==4.48.3
|
| 11 |
+
|
| 12 |
+
# ONNX export / inference
|
| 13 |
+
onnx==1.17.0
|
| 14 |
+
onnxruntime==1.23.2
|
| 15 |
+
onnxsim==0.4.36
|
| 16 |
+
|
| 17 |
+
# AXERA runtime dependency
|
| 18 |
+
# axengine is platform-specific and usually needs to be installed from AXERA's provided package,
|
| 19 |
+
# so it is documented here instead of being pinned as a pip requirement.
|
| 20 |
+
axengine
|