wlin21at commited on
Commit
8618aa4
1 Parent(s): 2652c1f
Files changed (2) hide show
  1. .gitignore +2 -0
  2. metric.py +1 -1
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ submission_info/
2
+ submissions/
metric.py CHANGED
@@ -60,7 +60,7 @@ def heading(text: str) -> str:
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
  )
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.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 = []