Skip to main content

A light-weight package for working with pre-trained word embeddings

Project description

A light-weight package for working with pre-trained word embeddings. Useful for input into neural networks, or for doing compositional semantics.

reach can read in word vectors in word2vec or glove format without any preprocessing.

The assumption behind reach is a no-hassle approach to featurization. The vectorization and bow approaches know how to deal with OOV words, removing these problems from your code.

Similarly, reach contains OOV and PAD vectors, removing the necessity of accounting for this in your own code.

reach also includes nearest neighbour calculation for arbitrary vectors, allowing you to experiment with compositional operators.

Example

from reach import Reach.

# Word2vec style: with header.
r = Reach("path/to/embeddings", header=True)

# Glove style: without header.
r = Reach("path/to/embeddings", header=False)

# Get vectors through indexing.
# Throws a KeyError is a word is not present.
vector = r['cat']

# Compare two words.
similarity = r.similarity('cat', 'dog')

# Find most similar.
similarities = r.most_similar('cat', 5)

sentence = 'a dog is the best creature alive'.split()
corpus = [sentence, sentence, sentence]

# bow representation, consistent with word vectors, for input into neural network.
bow = r.bow(sentence)

# vectorized representation.
vectorized = r.vectorize(sentence)

# can remove OOV words automatically.
vectorized = r.vectorize(sentence, remove_oov=True)

# vectorize corpus.
transformed = r.transform(corpus)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

reach-0.0.2.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

reach-0.0.2-py2-none-any.whl (4.6 kB view details)

Uploaded Python 2

File details

Details for the file reach-0.0.2.tar.gz.

File metadata

  • Download URL: reach-0.0.2.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for reach-0.0.2.tar.gz
Algorithm Hash digest
SHA256 64d562d612262f9c85ae20bce86161a21a1e6853ddcf32d0a57114c4a5a21461
MD5 22924ec437e1992c617ccf21516d5a1c
BLAKE2b-256 ac66d030cef8d39499ad807cd31a5753652f52a5744487aaaee796ae2e5a794c

See more details on using hashes here.

File details

Details for the file reach-0.0.2-py2-none-any.whl.

File metadata

File hashes

Hashes for reach-0.0.2-py2-none-any.whl
Algorithm Hash digest
SHA256 058a53422eaace65fec2d56dc3acc819ceb47c0a2dd96bb6d1227fdf902921b7
MD5 07584998fe19470e579418dd7f4c3290
BLAKE2b-256 4188fd820193c0423acdd6fe27fc8c16dd8ef8500ae41c62eeb12e1fa0a63978

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page