Update README.md
Browse files
README.md
CHANGED
|
@@ -18,5 +18,7 @@ from transformers import AutoModelForCausalLM
|
|
| 18 |
config = PeftConfig.from_pretrained("AISimplyExplained/RBI-Notif64")
|
| 19 |
model = AutoModelForCausalLM.from_pretrained("unsloth/mistral-7b-bnb-4bit")
|
| 20 |
model = PeftModel.from_pretrained(model, "AISimplyExplained/RBI-Notif64")
|
|
|
|
|
|
|
| 21 |
|
| 22 |
```
|
|
|
|
| 18 |
config = PeftConfig.from_pretrained("AISimplyExplained/RBI-Notif64")
|
| 19 |
model = AutoModelForCausalLM.from_pretrained("unsloth/mistral-7b-bnb-4bit")
|
| 20 |
model = PeftModel.from_pretrained(model, "AISimplyExplained/RBI-Notif64")
|
| 21 |
+
tokenizer= AutoTokenizer.from_pretrained("unsloth/mistral-7b-bnb-4bit")
|
| 22 |
+
|
| 23 |
|
| 24 |
```
|