Metadata-Version: 2.1
Name: ivis
Version: 1.3.0
Summary: Artificial neural network-driven visualization of high-dimensional data using triplets.
Home-page: http://github.com/beringresearch/ivis
Author: Benjamin Szubert, Ignat Drozdov
Author-email: bszubert@beringresearch.com, idrozdov@beringresearch.com
License: GNU General Public License v2.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: tensorflow
Requires-Dist: keras
Requires-Dist: numpy
Requires-Dist: scikit-learn
Requires-Dist: annoy (>=1.15.2)
Requires-Dist: tqdm
Provides-Extra: tests
Requires-Dist: pytest ; extra == 'tests'
Provides-Extra: visualization
Requires-Dist: matplotlib ; extra == 'visualization'
Requires-Dist: seaborn ; extra == 'visualization'

[![DOI](https://zenodo.org/badge/144551119.svg)](https://zenodo.org/badge/latestdoi/144551119) [![Documentation Status](https://readthedocs.org/projects/bering-ivis/badge/?version=latest)](https://bering-ivis.readthedocs.io/en/latest/?badge=latest) [![Downloads](https://pepy.tech/badge/ivis/month)](https://pepy.tech/project/ivis/month) [![Build Status](https://travis-ci.org/beringresearch/ivis.svg?branch=master)](https://travis-ci.org/beringresearch/ivis)

# ivis

Implementation of the ivis algorithm as described in the paper [Structure-preserving visualisation of high dimensional single-cell datasets](https://www.nature.com/articles/s41598-019-45301-0). 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.

![ivis 10M data points](https://github.com/beringresearch/ivis/blob/master/docs/_static/parity_primes_ivis_1e7_16k_smaller_pts.png)


## 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](https://bering-ivis.readthedocs.io) 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](https://github.com/beringresearch/ivis-animate) - visualise the Ivis learning process.
* [ivis-explain](https://github.com/beringresearch/ivis-explain) - explain which features contribute the most to ivis embeddings.

Copyright 2019 Bering Limited


