mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 10:16:27 +03:00
Apply suggestions from code review
This commit is contained in:
parent
31c7ce5072
commit
eb8d45291c
|
@ -57,9 +57,9 @@ def _get_span_indices(ops, spans: Ragged, lengths: Ints1d) -> Ints1d:
|
|||
for i, length in enumerate(lengths):
|
||||
spans_i = spans[i].dataXd + offset
|
||||
for j in range(spans_i.shape[0]):
|
||||
indices += list(range(spans_i[j, 0], spans_i[j, 1])) # type: ignore
|
||||
indices.extend(range(spans_i[j, 0], spans_i[j, 1]))
|
||||
offset += length
|
||||
return ops.xp.asarray(indices, dtype="int")
|
||||
return ops.asarray1i(indices)
|
||||
|
||||
|
||||
def _ensure_cpu(spans: Ragged, lengths: Ints1d) -> Tuple[Ragged, Ints1d]:
|
||||
|
|
Loading…
Reference in New Issue
Block a user