Added correct test predictions

This commit is contained in:
Kamil Guttmann 2022-05-07 21:40:37 +02:00
parent 9b68bb67c7
commit b217d37450
2 changed files with 543 additions and 663 deletions

View File

@ -27,7 +27,7 @@ with lzma.open("dev-0/in.tsv.xz", "rt", encoding="utf-8") as dev_file:
x_dev = [x.strip().lower() for x in dev_file.readlines()]
# Read test file
with lzma.open("dev-0/in.tsv.xz", "rt", encoding="utf-8") as test_file:
with lzma.open("test-A/in.tsv.xz", "rt", encoding="utf-8") as test_file:
x_test = [x.strip().lower() for x in test_file.readlines()]
# Predict dev

File diff suppressed because it is too large Load Diff