edbeeching HF staff commited on
Commit
98dc221
·
verified ·
1 Parent(s): 8578b73

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -51,8 +51,8 @@ messages = [
51
  prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
52
  outputs = pipe(prompt, max_new_tokens=8000, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
53
  print(outputs[0]["generated_text"])
54
- <|im_start|>user
55
- Write a python program to calulate the 10th fibonaci number<|im_end|>
56
- <|im_start|>assistant
57
- <think>Okay, I need to write a Python program that calculates the 10th Fibonacci number. Hmm, the Fibonacci sequence starts with 0 and 1. Each subsequent number is the sum of the two preceding ones. So the sequence goes: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, and so on. ...
58
  ```
 
51
  prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
52
  outputs = pipe(prompt, max_new_tokens=8000, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
53
  print(outputs[0]["generated_text"])
54
+ #<|im_start|>user
55
+ #Write a python program to calulate the 10th fibonaci number<|im_end|>
56
+ #<|im_start|>assistant
57
+ #<think>Okay, I need to write a Python program that calculates the 10th Fibonacci number. Hmm, the Fibonacci sequence starts with 0 and 1. Each subsequent number is the sum of the two preceding ones. So the sequence goes: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, and so on. ...
58
  ```