Update README.md
Browse files
README.md
CHANGED
@@ -32,8 +32,8 @@ import torch
|
|
32 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
33 |
|
34 |
torch.set_default_device("cuda")
|
35 |
-
model = AutoModelForCausalLM.from_pretrained("PrimeIntellect/INTELLECT-1")
|
36 |
-
tokenizer = AutoTokenizer.from_pretrained("PrimeIntellect/INTELLECT-1")
|
37 |
|
38 |
input_text = "What is the Metamorphosis of Prime Intellect about?"
|
39 |
input_ids = tokenizer.encode(input_text, return_tensors="pt")
|
|
|
32 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
33 |
|
34 |
torch.set_default_device("cuda")
|
35 |
+
model = AutoModelForCausalLM.from_pretrained("PrimeIntellect/INTELLECT-1-fp32")
|
36 |
+
tokenizer = AutoTokenizer.from_pretrained("PrimeIntellect/INTELLECT-1-fp32")
|
37 |
|
38 |
input_text = "What is the Metamorphosis of Prime Intellect about?"
|
39 |
input_ids = tokenizer.encode(input_text, return_tensors="pt")
|