Skip to content

Commit

Permalink
Update japanese-task-evaluation.py
Browse files Browse the repository at this point in the history
  • Loading branch information
olachinkei authored Nov 1, 2023
1 parent d26e7bd commit 74842ba
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 74842ba

Please sign in to comment.