The Wayback Machine - https://web.archive.org/web/20201111180251/https://spacy.io/api/vectors/

Other

Vectors

classv2
Store, save and load word vectors

Vectors data is kept in the Vectors.data attribute, which should be an instance of numpy.ndarray (for CPU vectors) or cupy.ndarray (for GPU vectors). Multiple keys can be mapped to the same vector, and not all of the rows in the table need to be assigned – so vectors.n_keys may be greater or smaller than vectors.shape[0].

Vectors.__init__ method

Create a new vector store. You can set the vector values and keys directly on initialization, or supply a shape keyword argument to create an empty table you can add vectors to later.

NameTypeDescription
datandarray[ndim=1, dtype='float32']The vector data.
keysiterableA sequence of keys aligned with the data.
shapetupleSize of the table as (n_entries, n_columns), the number of entries and number of columns. Not required if you’re initializing the object with data and keys.
nameunicodeA name to identify the vectors table.

Vectors.__getitem__ method

Get a vector by key. If the key is not found in the table, a KeyError is raised.

NameTypeDescription
keyintThe key to get the vector for.
returnsndarray[ndim=1, dtype='float32']The vector for the key.

Vectors.__setitem__ method

Set a vector for the given key.

NameTypeDescription
keyintThe key to set the vector for.
vectorndarray[ndim=1, dtype='float32']The vector to set.

Vectors.__iter__ method

Iterate over the keys in the table.

NameTypeDescription

Vectors.__len__ method

Return the number of vectors in the table.

NameTypeDescription

Vectors.__contains__ method

Check whether a key has been mapped to a vector entry in the table.

NameTypeDescription
keyintThe key to check.

Vectors.add method

Add a key to the table, optionally setting a vector value as well. Keys can be mapped to an existing vector by setting row, or a new vector can be added. When adding unicode keys, keep in mind that the Vectors class itself has no StringStore, so you have to store the hash-to-string mapping separately. If you need to manage the strings, you should use the Vectors via the Vocab class, e.g. vocab.vectors.

NameTypeDescription
keyunicode / intThe key to add.
vectorndarray[ndim=1, dtype='float32']An optional vector to add for the key.
rowintAn optional row number of a vector to map the key to.

Vectors.resize method

Resize the underlying vectors array. If inplace=True, the memory is reallocated. This may cause other references to the data to become invalid, so only use inplace=True if you’re sure that’s what you want. If the number of vectors is reduced, keys mapped to rows that have been deleted are removed. These removed items are returned as a list of (key, row) tuples.

NameTypeDescription
shapetupleA (rows, dims) tuple describing the number of rows and dimensions.
inplaceboolReallocate the memory.

Vectors.keys method

A sequence of the keys in the table.

NameTypeDescription

Vectors.values method

Iterate over vectors that have been assigned to at least one key. Note that some vectors may be unassigned, so the number of vectors returned may be less than the length of the vectors table.

NameTypeDescription

Vectors.items method

Iterate over (key, vector) pairs, in order.

NameTypeDescription

Vectors.find method

Look up one or more keys by row, or vice versa.

NameTypeDescription
keyunicode / intFind the row that the given key points to. Returns int, -1 if missing.
keysiterableFind rows that the keys point to. Returns ndarray.
rowintFind the first key that points to the row. Returns int.
rowsiterableFind the keys that point to the rows. Returns ndarray.

Vectors.shape property

Get (rows, dims) tuples of number of rows and number of dimensions in the vector table.

NameTypeDescription

Vectors.size property

The vector size, i.e. rows * dims.

NameTypeDescription

Vectors.is_full property

Whether the vectors table is full and has no slots are available for new keys. If a table is full, it can be resized using Vectors.resize.

NameTypeDescription

Vectors.n_keys property

Get the number of keys in the table. Note that this is the number of all keys, not just unique vectors. If several keys are mapped are mapped to the same vectors, they will be counted individually.

NameTypeDescription

Vectors.most_similar method

For each of the given vectors, find the n most similar entries to it, by cosine. Queries are by vector. Results are returned as a (keys, best_rows, scores) tuple. If queries is large, the calculations are performed in chunks, to avoid consuming too much memory. You can set the batch_size to control the size/space trade-off during the calculations.

NameTypeDescription
queriesndarrayAn array with one or more vectors.
batch_sizeintThe batch size to use. Default to 1024.
nintThe number of entries to return for each query. Defaults to 1.
sortboolWhether to sort the entries returned by score. Defaults to True.

Vectors.to_disk method

Save the current state to a directory.

NameTypeDescription
pathunicode / PathA path to a directory, which will be created if it doesn’t exist. Paths may be either strings or Path-like objects.

Vectors.from_disk method

Loads state from a directory. Modifies the object in place and returns it.

NameTypeDescription
pathunicode / PathA path to a directory. Paths may be either strings or Path-like objects.

Vectors.to_bytes method

Serialize the current state to a binary string.

NameTypeDescription

Vectors.from_bytes method

Load state from a binary string.

NameTypeDescription
databytesThe data to load from.

Attributes

NameTypeDescription
datandarray[ndim=1, dtype='float32']Stored vectors data. numpy is used for CPU vectors, cupy for GPU vectors.
key2rowdictDictionary mapping word hashes to rows in the Vectors.data table.
keysndarray[ndim=1, dtype='float32']Array keeping the keys in order, such that keys[vectors.key2row[key]] == key.