mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 10:16:27 +03:00
Fix bug in limit calculation on dev data
This commit is contained in:
parent
1b348389bb
commit
86ddf692a1
|
@ -179,7 +179,7 @@ class GoldCorpus(object):
|
|||
gold_tuples = read_json_file(loc)
|
||||
for item in gold_tuples:
|
||||
yield item
|
||||
i += 1
|
||||
i += len(item[1])
|
||||
if self.limit and i >= self.limit:
|
||||
break
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user