Update README.md
Browse files
README.md
CHANGED
|
@@ -49,12 +49,12 @@ This model is designed for use with the `transformers` library. For efficient in
|
|
| 49 |
First, ensure you have the necessary libraries installed:
|
| 50 |
```bash
|
| 51 |
pip install transformers torch accelerate bitsandbytes
|
| 52 |
-
|
| 53 |
Inference Code
|
| 54 |
|
| 55 |
The model's performance is highly dependent on using the specific prompt structure it was trained on. Please use the Alpaca-style prompt format provided below.
|
| 56 |
|
| 57 |
-
|
| 58 |
import torch
|
| 59 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 60 |
|
|
|
|
| 49 |
First, ensure you have the necessary libraries installed:
|
| 50 |
```bash
|
| 51 |
pip install transformers torch accelerate bitsandbytes
|
| 52 |
+
```
|
| 53 |
Inference Code
|
| 54 |
|
| 55 |
The model's performance is highly dependent on using the specific prompt structure it was trained on. Please use the Alpaca-style prompt format provided below.
|
| 56 |
|
| 57 |
+
``` python
|
| 58 |
import torch
|
| 59 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 60 |
|