Update requirements.txt
Browse files- requirements.txt +7 -34
requirements.txt
CHANGED
@@ -1,37 +1,10 @@
|
|
1 |
-
# Core ML/LLM Libraries
|
2 |
-
# Note: torch should ideally be installed separately following PyTorch official instructions
|
3 |
-
# based on your CUDA version (if using GPU) for optimal performance.
|
4 |
-
# See: https://pytorch.org/get-started/locally/
|
5 |
torch
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
# Quantization library (needed for load_in_4bit=True)
|
13 |
-
bitsandbytes>=0.41.3 # Check Unsloth docs for compatible versions if issues arise
|
14 |
-
|
15 |
-
# Interface library
|
16 |
-
gradio>=4.0.0 # Using a recent version
|
17 |
-
|
18 |
-
# --- IMPORTANT ---
|
19 |
-
# Unsloth needs to be installed separately following their specific instructions,
|
20 |
-
# as it often involves non-standard pip commands (e.g., installing from GitHub)
|
21 |
-
# or conda commands depending on your setup (CPU, CUDA version, ROCm).
|
22 |
-
#
|
23 |
-
# Example (check Unsloth's GitHub for the correct command for *your* system):
|
24 |
-
# pip install "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
|
25 |
-
#
|
26 |
-
# Or via Conda (check Unsloth docs):
|
27 |
-
# conda install "unsloth::unsloth[conda-new]" # Example
|
28 |
-
#
|
29 |
-
# Because Unsloth is not listed here, you MUST install it manually *before*
|
30 |
-
# trying to use this requirements.txt file or running the script.
|
31 |
-
|
32 |
-
# Other common dependencies that might be implicitly needed
|
33 |
Jinja2
|
34 |
packaging
|
35 |
-
|
36 |
-
|
37 |
-
unsloth
|
|
|
|
|
|
|
|
|
|
|
1 |
torch
|
2 |
+
transformers
|
3 |
+
accelerate
|
4 |
+
datasets
|
5 |
+
bitsandbytes
|
6 |
+
gradio
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
Jinja2
|
8 |
packaging
|
9 |
+
unsloth
|
10 |
+
gtts
|
|