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.
import ncvis
vis = ncvis.NCVis()
Y = vis.fit_transform(X)
More detailed examples can be found here.
You do not need to setup the environment if using conda, all dependencies are installed automatically.
$ conda install alartum::ncvis
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, cython and pybind11 packages (compile-time dependencies):
$ pip install numpy cython pybind11
- Install ncvis package:
$ pip install ncvis
Important: be sure to have OpenMP available.
First of all, download the pcg-cpp and hnswlib libraries:
$ make libs
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 pybind11 scipy $ conda-develop -bc .
-
Pip
$ pip install numpy cython pybind11 $ make wrapper
You can then use pytest to run some basic checks
$ pytest -v recipe/test.py
-
Release
$ make ncvis
-
Debug
$ make debug