Mini-library for producing graph visualizations from embedding models
Project description
vec2graph
Mini-library for producing graph visualizations from embedding models
Code is available at https://github.com/lizaku/vec2graph
Usage
pip install vec2graph
from vec2graph import visualize
visualize(OUTPUT_DIR, MODEL, WORD, depth=0, topn=10, threshold=0, edge=1, sep=False, library="web")
Example
model = gensim.models.KeyedVectors.load_word2vec_format('googlenews300.bin', binary=True)
visualize('tmp/graphs', model, 'apple')
Required arguments
- OUTPUT_DIR is the directory to store your visualizations
- MODEL is a word embedding model loaded with Gensim
- WORD is your query (single word or list of the words:
['apple', 'pear']
). If in the model PoS-tag is attached to the word, it shoul be written explicitly:'apple_NOUN'
Optional arguments
- depth: integer, default 0
depth to which the algorithm has to drill down into the relations of semantic neighbours (the higher this number is, the deeper the recursion, which means that it produces visualizations for the neighbours of the neighbours of the query word). - topn: integer, default 10
the number of neighbors to extract for each word - threshold: float, default 0
the value from which we start drawing edges between nodes. By default the fully connected graph is produced. - edge: integer, default 1
the width of edges in the graph - sep: bool, default False
if this parameter is used, token is split by a separator (underscore), and only first part is shown in visualization (E.g. it is useful when PoS is attached to a word -'apple_NOUN'
). - library: str, default 'web'
the path to D3.js library, can be 'web' (link to version at the D3.js site) or 'local' (file in the directory with generated HTML, if not present, it is downloaded from web).
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
vec2graph-0.3.0.tar.gz
(5.7 kB
view details)
Built Distribution
File details
Details for the file vec2graph-0.3.0.tar.gz
.
File metadata
- Download URL: vec2graph-0.3.0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c1c702a20da5cf3c2d38eacaadd1400ea81dbd0ccdefeaf7a785b07e1f6e6af |
|
MD5 | 9ce9a852d21dd9961b67f8bf0050d0e7 |
|
BLAKE2b-256 | ad822a4adecca8cb2075fc7aa584357ad6eb79bde3e4d81b56935113e15d35a0 |
File details
Details for the file vec2graph-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: vec2graph-0.3.0-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16dab170deb8d891c31fee94c0961ea047c3972f0e758d17dca9a3b79e918428 |
|
MD5 | 60b2ea500de2cd44168eecf6207d49ed |
|
BLAKE2b-256 | 25bf45db06130554f4b35478c5989be745fa251114ba280cac04ba3ee0932396 |