Noise contrastive data visualization
Project description
ncvis
NCVis is an efficient solution for data visualization and dimensionality reduction. It uses HNSW to quickly construct the nearest neighbors graph and a parallel (batched) approach to build its embedding. Efficient random sampling is achieved via PCGRandom. Detailed application examples can be found here.
Using
import ncvis
vis = ncvis.NCVis()
Y = vis.fit_transform(X)
More detailed examples can be found here.
Installation
Conda [recommended]
You do not need to setup the environment if using conda, all dependencies are installed automatically.
$ conda install alartum::ncvis
Pip [not recommended]
Important: be sure to have a compiler with OpenMP support. GCC has it by default, which is not the case with clang. You may need to install llvm-openmp library beforehand.
- Install numpy and cython packages (compile-time dependencies):
$ pip install numpy cython
- Install ncvis package:
$ pip install ncvis
From source [not recommended]
Important: be sure to have OpenMP available.
First of all, download the pcg-cpp and hnswlib libraries:
$ make libs
Python Wrapper
If conda environment is used, it replaces library search paths. To prevent compilation errors, you either need to use compilers provided by conda or switch to pip and system compilers.
-
Conda
$ conda install -c conda-forge cxx-compiler c-compiler conda-build numpy cython scipy $ conda-develop -bc .
-
Pip
$ pip install numpy cython $ make wrapper
You can then use pytest to run some basic checks
$ pytest -v recipe/test.py
C++ Binary
-
Release
$ make ncvis
-
Debug
$ make debug
Project details
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
File details
Details for the file ncvis-1.5.10.tar.gz
.
File metadata
- Download URL: ncvis-1.5.10.tar.gz
- Upload date:
- Size: 325.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc91de8b2182d0e3bab9bcfdd4171fe409298e768f0f9ebb799f2b0ca6c19bf2 |
|
MD5 | a2aad316d15260b80a4eca1f77b01a25 |
|
BLAKE2b-256 | b0309fc943ec0edc43047d0d514ee8bb1a3b37545a0fb97df2fab74fcca380d1 |