Create requirements.txt
Browse files- requirements.txt +6 -0
requirements.txt
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch
|
| 2 |
+
transformers
|
| 3 |
+
gradio # or streamlit if you're using it
|
| 4 |
+
bitsandbytes # For 4-bit/8-bit quantization
|
| 5 |
+
accelerate # Helps with device mapping and quantization
|
| 6 |
+
sentencepiece # Often a dependency for LLM tokenizers
|