From 9577a9acc47182c4fd4196e05d0e7290a5213f38 Mon Sep 17 00:00:00 2001 From: ChenXin Date: Mon, 16 Mar 2020 18:57:21 +0800 Subject: [PATCH] fix a tiny bug --- test/io/pipe/test_classification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/io/pipe/test_classification.py b/test/io/pipe/test_classification.py index 987327d4..ac67e573 100644 --- a/test/io/pipe/test_classification.py +++ b/test/io/pipe/test_classification.py @@ -45,7 +45,7 @@ class TestRunClassificationPipe(unittest.TestCase): 'dbpedia': ('test/data_for_tests/io/dbpedia', DBPediaPipe, (5, 14), (496, 14), False), 'ChnSentiCorp': ('test/data_for_tests/io/ChnSentiCorp', ChnSentiCorpPipe, (6, 6, 6), (529, 1296, 1483, 2), False), 'Chn-THUCNews': ('test/data_for_tests/io/THUCNews', THUCNewsPipe, (9, 9, 9), (1864, 9), False), - 'Chn-WeiboSenti100k': ('test/data_for_tests/io/WeiboSenti100k', WeiboSenti100kPipe, (7, 6, 6), (452, 2), False), + 'Chn-WeiboSenti100k': ('test/data_for_tests/io/WeiboSenti100k', WeiboSenti100kPipe, (6, 6, 7), (452, 2), False), } for k, v in data_set_dict.items(): path, pipe, data_set, vocab, warns = v