safoinetl commited on
Commit
6cdf0c8
verified
1 Parent(s): 17c2e0a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -24,7 +24,7 @@ It has been trained using [TRL](https://github.com/huggingface/trl).
24
  ```python
25
  from transformers import pipeline
26
 
27
- question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
28
  generator = pipeline("text-generation", model="safoinetl/alzheimer_llm_model", device="cuda")
29
  output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
30
  print(output["generated_text"])
 
24
  ```python
25
  from transformers import pipeline
26
 
27
+ question = "what is alzheimer's disease ?"
28
  generator = pipeline("text-generation", model="safoinetl/alzheimer_llm_model", device="cuda")
29
  output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
30
  print(output["generated_text"])