Spaces:
Runtime error
Runtime error
mariagrandury
commited on
Commit
·
b860b0b
1
Parent(s):
bc2bccc
Add accelerate to requirements
Browse filesAdd accelerate to requirements to fix the following error:
```
ImportError: Using `load_in_8bit=True` requires Accelerate: `pip install accelerate` and the latest version of bitsandbytes `pip install -i https://test.pypi.org/simple/ bitsandbytes` or pip install bitsandbytes`
```
- requirements.txt +1 -0
requirements.txt
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
torch
|
2 |
gradio
|
3 |
transformers
|
|
|
4 |
bitsandbytes
|
5 |
loralib
|
6 |
scipy
|
|
|
1 |
torch
|
2 |
gradio
|
3 |
transformers
|
4 |
+
accelerate
|
5 |
bitsandbytes
|
6 |
loralib
|
7 |
scipy
|