Update README.md
Browse files
README.md
CHANGED
|
@@ -70,7 +70,7 @@ from transformers import AutoTokenizer, AutoModelForCausalLM
|
|
| 70 |
import torch
|
| 71 |
|
| 72 |
# Load the model and tokenizer
|
| 73 |
-
model_path = "microsoft/
|
| 74 |
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
|
| 75 |
model = AutoModelForCausalLM.from_pretrained(model_path, trust_remote_code=True).to("cuda")
|
| 76 |
|
|
|
|
| 70 |
import torch
|
| 71 |
|
| 72 |
# Load the model and tokenizer
|
| 73 |
+
model_path = "microsoft/UserLM-8b"
|
| 74 |
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
|
| 75 |
model = AutoModelForCausalLM.from_pretrained(model_path, trust_remote_code=True).to("cuda")
|
| 76 |
|