Update README.md
Browse files
README.md
CHANGED
|
@@ -32,7 +32,7 @@ from transformers import AutoTokenizer, AutoModelForCausalLM
|
|
| 32 |
import torch
|
| 33 |
|
| 34 |
# Load the model and tokenizer
|
| 35 |
-
model_path = "microsoft/
|
| 36 |
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
|
| 37 |
model = AutoModelForCausalLM.from_pretrained(model_path, trust_remote_code=True).to("cuda")
|
| 38 |
|
|
|
|
| 32 |
import torch
|
| 33 |
|
| 34 |
# Load the model and tokenizer
|
| 35 |
+
model_path = "microsoft/UserLM-8b"
|
| 36 |
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
|
| 37 |
model = AutoModelForCausalLM.from_pretrained(model_path, trust_remote_code=True).to("cuda")
|
| 38 |
|