build: add requirements.txt with core dependencies
Browse filesAdd initial requirements file specifying package versions needed for the project including streamlit, transformers, and torch for ML functionality
- requirements.txt +8 -0
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit>=1.32
|
| 2 |
+
transformers==4.47.1
|
| 3 |
+
peft>=0.12.0
|
| 4 |
+
unsloth==2024.9
|
| 5 |
+
accelerate>=0.33.0
|
| 6 |
+
bitsandbytes>=0.43.0
|
| 7 |
+
torch>=2.3.0
|
| 8 |
+
huggingface_hub>=0.22.0
|