mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
Fix dtype
This commit is contained in:
parent
fa7fdd0d9b
commit
1d5599cd28
|
@ -94,7 +94,7 @@ def _zero_init(model):
|
|||
def _preprocess_doc(docs, drop=0.):
|
||||
keys = [doc.to_array([LOWER]) for doc in docs]
|
||||
ops = Model.ops
|
||||
lengths = ops.asarray([arr.shape[0] for arr in keys], dtype='int32')
|
||||
lengths = ops.asarray([arr.shape[0] for arr in keys], dtype='int64')
|
||||
keys = ops.xp.concatenate(keys)
|
||||
vals = ops.allocate(keys.shape[0]) + 1
|
||||
return (keys, vals, lengths), None
|
||||
|
|
Loading…
Reference in New Issue
Block a user