pszemraj commited on
Commit
a69aed2
1 Parent(s): e9d6045

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -28,13 +28,13 @@ Refer to the [original model](https://huggingface.co/databricks/dolly-v2-12b) fo
28
  ## Basic Usage
29
 
30
 
31
- install `transformers`, `accelerate`, and `bitsandbytes`.
32
 
33
  ```bash
34
  pip install -U -q transformers bitsandbytes accelerate
35
  ```
36
 
37
- Load the model. As it is serialized in 8bit you don't need to do anything special.
38
 
39
  ```python
40
  from transformers import AutoTokenizer, AutoModelForCausalLM
 
28
  ## Basic Usage
29
 
30
 
31
+ install/upgrade `transformers`, `accelerate`, and `bitsandbytes`. For this to work **you must have** `transformers>=4.28.0` and `bitsandbytes>0.37.2`.
32
 
33
  ```bash
34
  pip install -U -q transformers bitsandbytes accelerate
35
  ```
36
 
37
+ Load the model. As it is serialized in 8bit you don't need to do anything special:
38
 
39
  ```python
40
  from transformers import AutoTokenizer, AutoModelForCausalLM