NLPGenius commited on
Commit
e5439b9
·
verified ·
1 Parent(s): 6276198

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -20,7 +20,7 @@ It has been trained using [TRL](https://github.com/huggingface/trl).
20
  ```python
21
  from transformers import pipeline
22
 
23
- 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?"
24
  generator = pipeline("text-generation", model="NLPGenius/outputs", device="cuda")
25
  output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
  print(output["generated_text"])
 
20
  ```python
21
  from transformers import pipeline
22
 
23
+ question = "What is the step-by-step procedure for the dinking water service in KP?"
24
  generator = pipeline("text-generation", model="NLPGenius/outputs", device="cuda")
25
  output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
  print(output["generated_text"])