wlin21at commited on
Commit
dbe1af0
1 Parent(s): b8d6a95
Files changed (1) hide show
  1. metric.py +2 -1
metric.py CHANGED
@@ -60,7 +60,8 @@ def heading(text: str) -> str:
60
 
61
  def chat_llm_batch(model_id, prompts, limit= 20):
62
  parameters = TextGenerationParameters(
63
- decoding_method=DecodingMethod.GREEDY, max_new_tokens=128, min_new_tokens=30, temperature=0, top_k=50, top_p=1, random_seed=42
 
64
  )
65
  client = Client(credentials=Credentials.from_env())
66
  response_list = []
 
60
 
61
  def chat_llm_batch(model_id, prompts, limit= 20):
62
  parameters = TextGenerationParameters(
63
+ # decoding_method=DecodingMethod.SAMPLE, max_new_tokens=128, min_new_tokens=30, temperature=0, top_k=50, top_p=1, random_seed=42
64
+ decoding_method=DecodingMethod.GREEDY, max_new_tokens=128, min_new_tokens=30, temperature=0, top_k=50, top_p=0, random_seed=42
65
  )
66
  client = Client(credentials=Credentials.from_env())
67
  response_list = []