Update README.md
Browse files
README.md
CHANGED
@@ -17,13 +17,22 @@ It is only for use as an experimental version prior launching a new one which al
|
|
17 |
|
18 |
## Usage:
|
19 |
|
20 |
-
Prerequisites:
|
|
|
|
|
|
|
21 |
|
22 |
-
|
|
|
|
|
|
|
|
|
23 |
|
24 |
```python
|
25 |
# Upgrade in case bitsandbytes already installed
|
26 |
-
pip install bitsandbytes -U
|
|
|
|
|
27 |
```
|
28 |
|
29 |
```python
|
|
|
17 |
|
18 |
## Usage:
|
19 |
|
20 |
+
Prerequisites packages:
|
21 |
+
- transformers
|
22 |
+
- accelerate
|
23 |
+
- bitsandbytes-0.43.1
|
24 |
|
25 |
+
Minimum Environment: T4 GPU (The free of charge Google Colab T4, should run fine)
|
26 |
+
or just run all this Colab (make sure you select T4 GPU):
|
27 |
+
https://colab.research.google.com/drive/1lp-JygPxsaQp-NdB7Mh_uVVYeIIXcAlt?usp=sharing
|
28 |
+
|
29 |
+
Notice: Since it is a 7B parameter model, it takes some time to load all the safetensors.
|
30 |
|
31 |
```python
|
32 |
# Upgrade in case bitsandbytes already installed
|
33 |
+
pip install transformers accelerate bitsandbytes -U
|
34 |
+
# or from Colab
|
35 |
+
!pip install transformers accelerate bitsandbytes -U
|
36 |
```
|
37 |
|
38 |
```python
|