nessvec 0.0.16
pip install nessvec==0.0.16
Newer version available (0.2.0)
Released:
Decomposition of word embeddings (word vectors) into qualities ('ness'es).
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Other/Proprietary License (GPLv3)
- Author: Hobson Lane
- Tags NLP , Natural Language Processing , Virtual Assistant , chatbot , Text Processing , Machine Learning , Text Mining , Deep Learning
- Requires: Python >=3.8.3, <3.10.0
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
nessvec
Install from Source (recommended)
Clone the repository with all the source code and data:
$ git clone git@gitlab.com:tangibleai/nessvec
$ cd nessvec
Create a conda environment and install the dependencies:
$ conda create -n nessvec 'python==3.9.7'
$ conda env update -n nessvec -f scripts/environment.yml
$ pip install -e .
Install from PyPi (only tested on Linux)
$ pip install nessvec
Get Started
>>> from nessvec.util import load_glove
>>> w2v = load_glove()
>>> seattle = w2v['seattle']
>>> seattle
array([-2.7303e-01, 8.5872e-01, 1.3546e-01, 8.3849e-01, ...
>>> portland = w2v['portland']
>>> portland
array([-0.78611 , 1.2758 , -0.0036066, 0.54873 , -0.31474 ,...
>>> len(portland)
50
>>> from numpy.linalg import norm
>>> norm(portland)
4.417...
>>> portland.std()
0.615...
>>> cosine_similarity(seattle, portland)
0.84...
>>> cosine_similarity(portland, seattle)
0.84...
>>> from nessvec.util import cosine_similarity
>>> cosine_similarity(w2v['los_angeles'], w2v['mumbai'])
.5
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Other/Proprietary License (GPLv3)
- Author: Hobson Lane
- Tags NLP , Natural Language Processing , Virtual Assistant , chatbot , Text Processing , Machine Learning , Text Mining , Deep Learning
- Requires: Python >=3.8.3, <3.10.0
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nessvec-0.0.16.tar.gz
.
File metadata
- Download URL: nessvec-0.0.16.tar.gz
- Upload date:
- Size: 164.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.7 Linux/5.15.0-27-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
02bef8490f9771abd887d5f3f0134d625e01654705be42415e43fe38b6d21d4b
|
|
MD5 |
b58a1ad50556c06d7c89e717fdfbf62c
|
|
BLAKE2b-256 |
bc3023be81a2a675847edb00f44bf5e850d9b811c28ecd935725283b079641ae
|
File details
Details for the file nessvec-0.0.16-py3-none-any.whl
.
File metadata
- Download URL: nessvec-0.0.16-py3-none-any.whl
- Upload date:
- Size: 184.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.7 Linux/5.15.0-27-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
dcfa4d71397c012bf2dffc32bae56a5d8e7c5387ffc360646826352007962ce9
|
|
MD5 |
1abfba884dbb910b3219fea4193b2884
|
|
BLAKE2b-256 |
3426423aa5c80d8580afd014159e0e37581142917b9ab830cd697d39ded57424
|