mirror of https://github.com/explosion/spaCy.git
Merge pull request #1719 from mpuels/patch-5
fix: Add missing period in train data
This commit is contained in:
commit
aad26965bd
|
@ -21,7 +21,7 @@ TRAIN_DATA = [
|
||||||
'heads': [1, 1, 4, 4, 5, 1, 1],
|
'heads': [1, 1, 4, 4, 5, 1, 1],
|
||||||
'deps': ['nsubj', 'ROOT', 'compound', 'punct', 'nmod', 'dobj', 'punct']
|
'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],
|
'heads': [1, 1, 1, 2, 2, 1],
|
||||||
'deps': ['nsubj', 'ROOT', 'dobj', 'cc', 'conj', 'punct']
|
'deps': ['nsubj', 'ROOT', 'dobj', 'cc', 'conj', 'punct']
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue