Artificial neural network-driven visualization of high-dimensional data using triplets.
Project description
ivis
Implementation of the ivis algorithm as described in the paper Structure-preserving visualisation of high dimensional single-cell datasets. Ivis is designed to reduce dimensionality of very large datasets using a siamese neural network trained on triplets. Both unsupervised and supervised modes are supported.
Installation
Install the latest ivis release from PyPi:
pip install ivis
Alternatively, you can install the development version from github:
git clone https://github.com/beringresearch/ivis
cd ivis
pip install -r requirements.txt --editable .
The following optional dependencies are needed if using the visualization callbacks while training the Ivis model:
- matplotlib
- seaborn
Upgrading
Ivis Python package is updated frequently! To upgrade, run:
pip install ivis --upgrade
Features
- Scalable: ivis is fast and easily extends to millions of observations and thousands of features.
- Versatile: numpy arrays, sparse matrices, and hdf5 files are supported out of the box, making it easy to apply ivis to heterogeneous problems including clustering and anomaly detection.
- Accurate: ivis excels at preserving both local and global features of a dataset. Often, ivis performs better at preserving global structure of the data than t-SNE, making it easy to visualise and interpret high-dimensional datasets.
- Generalisable: ivis supports addition of new data points to original embeddings via a
transform
method, making it easy to incorporate ivis into standard sklearn Pipelines.
And many more! See ivis readme for latest additions and examples.
Examples
from ivis import Ivis
from sklearn.preprocessing import MinMaxScaler
from sklearn import datasets
iris = datasets.load_iris()
X = iris.data
X_scaled = MinMaxScaler().fit_transform(X)
model = Ivis(embedding_dims=2, k=15)
embeddings = model.fit_transform(X_scaled)
Ivis Universe
Ivis can be used in a wide variety of real-world applications. The Ivis Universe consists of packages that extend the core Ivis functionality.
- ivis-animate - visualise the Ivis learning process.
- ivis-explain - explain which features contribute the most to ivis embeddings.
Copyright 2019 Bering Limited
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
Built Distribution
File details
Details for the file ivis-1.5.1.tar.gz
.
File metadata
- Download URL: ivis-1.5.1.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e85de1af062d0e562ef04693789af7d70552990b679e9468b49703fc20ed952 |
|
MD5 | 934d46349c36a7b9a4af3712544893b4 |
|
BLAKE2b-256 | a686ce292367f0ba648dbce1043c60b7030c542ad629fa3ac2d05dabf4840734 |
File details
Details for the file ivis-1.5.1-py3-none-any.whl
.
File metadata
- Download URL: ivis-1.5.1-py3-none-any.whl
- Upload date:
- Size: 22.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bc0462262af72dcba0ed79a9f06ab682a141551059cf7656db621e77a47ecc5 |
|
MD5 | 508923dd2cb71adde236e13f90d59fe9 |
|
BLAKE2b-256 | 5609cd19200c8a6aebf51564fd591445952b385be38e8b9a11e70a32c90be0e0 |