Skip to content

Commit

Permalink
Name a param
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh committed Oct 5, 2023
1 parent de98bc5 commit 96aa7e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ontogpt/evaluation/ctd/eval_ctd.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,10 @@ def included(t: ChemicalToDiseaseRelationship):
pred = PredictionRE(predicted_object=predicted_obj, test_object=doc)
pred.named_entities = named_entities
logger.info("PRED")
logger.info(yaml.dump(pred.model_dump()))
logger.info(yaml.dump(data=pred.model_dump()))
logger.info("Calc scores")
pred.calculate_scores(labelers=[labeler])
logger.info(yaml.dump(pred.model_dump()))
logger.info(yaml.dump(data=pred.model_dump()))
eos.predictions.append(pred)
self.calc_stats(eos)
return eos
Expand Down

0 comments on commit 96aa7e5

Please sign in to comment.