Hellisotherpeople commited on
Commit
2f8816f
β€’
1 Parent(s): c26cd38

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ else:
53
  length = form.number_input("Select how long you want the generated text to be", value = 100)
54
  number_of_tokens_to_sample = form.number_input("Select how many tokens we want to search through when we do the filtering", value = 25000)
55
  form.caption("Settings this to higher numbers will improve the experience but will cause generating to slow. Low numbers may cause lots of blank or failed generations")
56
- temperature = form.number_input("How spicy/interesting do we want our models output to be", value = 1.05, min_value = 0.0)
57
  form.caption("Setting this higher decreases the likelihood of high probability words and increases the likelihood of low probability (and presumably more interesting) words")
58
  form.caption("For more details on what these settings mean, see here: https://huggingface.co/blog/how-to-generate")
59
 
 
53
  length = form.number_input("Select how long you want the generated text to be", value = 100)
54
  number_of_tokens_to_sample = form.number_input("Select how many tokens we want to search through when we do the filtering", value = 25000)
55
  form.caption("Settings this to higher numbers will improve the experience but will cause generating to slow. Low numbers may cause lots of blank or failed generations")
56
+ temperature = form.number_input("How spicy/interesting do we want our models output to be", value = 0.90, min_value = 0.0)
57
  form.caption("Setting this higher decreases the likelihood of high probability words and increases the likelihood of low probability (and presumably more interesting) words")
58
  form.caption("For more details on what these settings mean, see here: https://huggingface.co/blog/how-to-generate")
59