marialasam commited on
Commit
2f49fcd
·
verified ·
1 Parent(s): 3203b11

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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, one must first analyze "
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,