sugiv commited on
Commit
8fc1136
·
1 Parent(s): d8f18d9

Setting verbosity to false in llm

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -46,7 +46,8 @@ generation_kwargs = {
46
  "temperature": 0.05,
47
  "top_k": 10,
48
  "top_p": 0.9,
49
- "repeat_penalty": 1.1
 
50
  }
51
 
52
  def verify_token(token: str) -> bool:
 
46
  "temperature": 0.05,
47
  "top_k": 10,
48
  "top_p": 0.9,
49
+ "repeat_penalty": 1.1,
50
+ "verbose": False
51
  }
52
 
53
  def verify_token(token: str) -> bool: