gururise commited on
Commit
60a062f
·
1 Parent(s): 7be6d2b

examples updates

Browse files
Files changed (1) hide show
  1. app.py +4 -6
app.py CHANGED
@@ -61,8 +61,7 @@ def infer(
61
  assert 0.0 <= temperature <= 1.0
62
  assert 0.0 <= top_p <= 1.0
63
 
64
- if temperature == 0.0:
65
- temperature = 0.05
66
  if prompt == "":
67
  prompt = " "
68
 
@@ -165,8 +164,7 @@ def chat(
165
  assert 0.0 <= temperature <= 1.0
166
  assert 0.0 <= top_p <= 1.0
167
 
168
- if temperature == 0.0:
169
- temperature = 0.05
170
 
171
  prompt = f"{username}: " + prompt + "\n"
172
  print(f"CHAT ({datetime.now()}):\n-------\n{prompt}")
@@ -211,11 +209,11 @@ Alex:''', "generative", 220, 0.9, 0.9, "\\n\\n,<|endoftext|>"],
211
  Please Write a Short story about a cat learning python
212
 
213
  Best Full Response:
214
- ''', "generative", 80, 0.2, 1.0, "\\n\\n,<|endoftext|>"],
215
  [
216
  # Natural Language Interface
217
  '''Here is a short story (in the style of Tolkien) in which Aiden attacks a robot with a sword:
218
- ''',"generative", 200, 0.85, 0.8, "<|endoftext|>"]
219
  ]
220
 
221
 
 
61
  assert 0.0 <= temperature <= 1.0
62
  assert 0.0 <= top_p <= 1.0
63
 
64
+ temperature = max(0.05,temperature)
 
65
  if prompt == "":
66
  prompt = " "
67
 
 
164
  assert 0.0 <= temperature <= 1.0
165
  assert 0.0 <= top_p <= 1.0
166
 
167
+ temperature = max(0.05,temperature)
 
168
 
169
  prompt = f"{username}: " + prompt + "\n"
170
  print(f"CHAT ({datetime.now()}):\n-------\n{prompt}")
 
209
  Please Write a Short story about a cat learning python
210
 
211
  Best Full Response:
212
+ ''', "generative", 180, 0.85, 0.8, "\\n\\n,<|endoftext|>"],
213
  [
214
  # Natural Language Interface
215
  '''Here is a short story (in the style of Tolkien) in which Aiden attacks a robot with a sword:
216
+ ''',"generative", 180, 0.85, 0.8, "<|endoftext|>"]
217
  ]
218
 
219