Skip to content

Commit

Permalink
Review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
tabergma committed Aug 29, 2019
1 parent 43b7de8 commit 89c8b00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rasa/nlu/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def collect_nlu_errors(
"correctly: \n{}".format(errors)
)
else:
logger.info("No incorrect intent predictions found.")
logger.info("Your model predicted all intents successfully.")


def plot_intent_confidences(
Expand Down Expand Up @@ -450,13 +450,13 @@ def collect_entity_errors(

if errors:
utils.write_json_to_file(error_filename, errors)
logger.info("Incorrect enntity predictions saved to {}.".format(error_filename))
logger.info("Incorrect entity predictions saved to {}.".format(error_filename))
logger.debug(
"\n\nThese intent examples could not be classified "
"correctly: \n{}".format(errors)
)
else:
logger.info("No incorrect entity prediction found.")
logger.info("Your model predicted all entities successfully.")


def collect_entity_successes(
Expand Down

0 comments on commit 89c8b00

Please sign in to comment.