sixf0ur commited on
Commit
ab8b558
·
verified ·
1 Parent(s): 53350fd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -69,6 +69,10 @@ inputs = tokenizer(prompt, return_tensors="pt")
69
  output = model.generate(**inputs, max_new_tokens=50, temperature=0.7, do_sample=True)
70
  print(tokenizer.decode(output[0], skip_special_tokens=True))
71
 
 
 
 
 
72
  ```
73
 
74
  ## Training Progress
 
69
  output = model.generate(**inputs, max_new_tokens=50, temperature=0.7, do_sample=True)
70
  print(tokenizer.decode(output[0], skip_special_tokens=True))
71
 
72
+ # Ouptut:
73
+ # The meaning of life is a set of ways that people can share, feel, and learn about things.
74
+ # People have thought about things like how they find their way, where they look for adventures, and how they fit together
75
+
76
  ```
77
 
78
  ## Training Progress