Skip to content

Commit

Permalink
Merge pull request #42 from wandb/olachinkei-patch-1
Browse files Browse the repository at this point in the history
Update japanese-task-evaluation.py
  • Loading branch information
olachinkei authored Nov 1, 2023
2 parents d26e7bd + 74842ba commit 8654e70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/japanese-task-evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@
llm = HuggingFacePipeline(pipeline=pipe)
llm_chain = LLMChain(llm=llm, prompt=get_template(eval_category[2], template_type), output_key="output")
jnli_score, jnli_balanced_score = eval_JNLI(dataset,llm_chain)
table_contents.append(jnli_score, jnli_balanced_score)
table_contents.append(jnli_score)
table_contents.append(jnli_balanced_score)

#JSQuAD--------------------------------------------------------
if config.use_artifact:
Expand Down

0 comments on commit 8654e70

Please sign in to comment.