mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-06 22:50:33 +03:00
6 lines
152 B
Python
6 lines
152 B
Python
def merge_sentences(docs, n_sents):
|
|
merged = []
|
|
for group in minibatch(docs, size=n_sents):
|
|
raise NotImplementedError
|
|
return merged
|