Fix printing in spacy train

This commit is contained in:
Matthew Honnibal 2018-12-09 06:03:49 +01:00
parent d2ac618af1
commit 1b1a1af193
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ def train(
row_head = ("Itn", "Dep Loss", "NER Loss", "UAS", "NER P", "NER R", "NER F", "Tag %", "Token %", "CPU WPS", "GPU WPS")
row_settings = {
"widths": (3, 10, 10, 7, 7, 7, 7, 7, 7, 7, 7),
"aligns": ["r" for i in row_head],
"aligns": tuple(["r" for i in row_head]),
"spacing": 2
}
# fmt: on