- Json fix in comment (#3294)

This commit is contained in:
Michael Liberman 2019-02-19 19:01:35 +02:00 committed by Ines Montani
parent e09f1347fa
commit 386cec1979

View File

@ -35,7 +35,7 @@ TAG_MAP = {
# strings are unicode and that the number of tags assigned matches spaCy's
# tokenization. If not, you can always add a 'words' key to the annotations
# that specifies the gold-standard tokenization, e.g.:
# ("Eatblueham", {'words': ['Eat', 'blue', 'ham'] 'tags': ['V', 'J', 'N']})
# ("Eatblueham", {'words': ['Eat', 'blue', 'ham'], 'tags': ['V', 'J', 'N']})
TRAIN_DATA = [
("I like green eggs", {'tags': ['N', 'V', 'J', 'N']}),
("Eat blue ham", {'tags': ['V', 'J', 'N']})