Skip to content

Commit

Permalink
- Json fix in comment (explosion#3294)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelibg authored and ines committed Feb 19, 2019
1 parent e09f134 commit 386cec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/training/train_tagger.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# 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']})
Expand Down

0 comments on commit 386cec1

Please sign in to comment.