Merge pull request #1719 from mpuels/patch-5

fix: Add missing period in train data
This commit is contained in:
Ines Montani 2017-12-13 11:10:57 +00:00 committed by GitHub
commit aad26965bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ TRAIN_DATA = [
'heads': [1, 1, 4, 4, 5, 1, 1],
'deps': ['nsubj', 'ROOT', 'compound', 'punct', 'nmod', 'dobj', 'punct']
}),
("I like London and Berlin", {
("I like London and Berlin.", {
'heads': [1, 1, 1, 2, 2, 1],
'deps': ['nsubj', 'ROOT', 'dobj', 'cc', 'conj', 'punct']
})