From 8df68f7b52f281a57cb87a73c3f5d558151a5df7 Mon Sep 17 00:00:00 2001 From: Steve Lu <15214696+desire2020@users.noreply.github.com> Date: Wed, 31 Jan 2024 01:27:50 -0800 Subject: [PATCH] Update README.md Fix a bug in the example of using ACCENT to evaluate user dialogue. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb1fb48..5a06ff8 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ We provide the following two ways to use ACCENT on your own dialogues: history = "{utt1}{utt2}{utt3}{utt4}" # Dialogue history with 4 previous utterances. target = "target response to evaluate" - score, tuples, cs_tails, tuple_scores = metric.score(history, target, debug_mode=True) + score, tuples, cs_tails, tuple_scores = metric.score(history, target, verbose_mode=True) print(f'Score: {score}')