AISimplyExplained commited on
Commit
4cd8613
1 Parent(s): ac08d0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -0
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
  ```