Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- timdettmers/openassistant-guanaco
|
5 |
+
pipeline_tag: text-generation
|
6 |
+
---
|
7 |
+
Model fine-tuned in 4-bit precision using QLoRA on [timdettmers/openassistant-guanaco](https://huggingface.co/datasets/timdettmers/openassistant-guanaco) with weights merged after training.
|
8 |
+
|
9 |
+
Made using this [Google Colab notebook](https://colab.research.google.com/drive/1PEQyJO1-f6j0S_XJ8DV50NkpzasXkrzd?usp=sharing).
|
10 |
+
|
11 |
+
It can be easily imported using the `AutoModelForCausalLM` class from `transformers`:
|
12 |
+
|
13 |
+
```
|
14 |
+
from transformers import AutoModelForCausalLM
|
15 |
+
|
16 |
+
model = AutoModelForCausalLM("mlabonne/llama-2-7b-guanaco")
|
17 |
+
```
|