Update README.md
Browse files
README.md
CHANGED
@@ -60,7 +60,7 @@ tokenizer = AutoTokenizer.from_pretrained("goppa-ai/Goppa-LogiLlama", trust_remo
|
|
60 |
model = AutoModelForCausalLM.from_pretrained("goppa-ai/Goppa-LogiLlama", trust_remote_code=True)
|
61 |
|
62 |
model.to('cuda')
|
63 |
-
text = "When faced with a complex problem,
|
64 |
input_ids = tokenizer(text, return_tensors="pt").to('cuda').input_ids
|
65 |
outputs = model.generate(
|
66 |
input_ids,
|
|
|
60 |
model = AutoModelForCausalLM.from_pretrained("goppa-ai/Goppa-LogiLlama", trust_remote_code=True)
|
61 |
|
62 |
model.to('cuda')
|
63 |
+
text = "When faced with a complex problem, what should one do?"
|
64 |
input_ids = tokenizer(text, return_tensors="pt").to('cuda').input_ids
|
65 |
outputs = model.generate(
|
66 |
input_ids,
|