Skip to main content

Visualization tool for unsupervised image visualization (ICLR 2023)

Project description

Unsupervised visualization of image datasets using contrastive learning

This is the code for the paper “Unsupervised visualization of image datasets using contrastive learning” (ICLR 2023).

If you use the code, please cite our paper:

@inproceedings{boehm2023unsupervised,
  title={Unsupervised visualization of image datasets using contrastive learning},
  author={B{\"o}hm, Jan Niklas and Berens, Philipp and Kobak, Dmitry},
  booktitle={International Conference on Learning Representations},
  year={2023},
}

We show that it is possible to visualize datasets such as CIFAR-10 and CIFAR-100 in 2D with a contrastive learning objective, while preserving a lot of structure! We call our method t-SimCNE.

arch

Installation

Installation should be as easy as calling:

pip install tsimcne

The package is now available on PyPI. If you want to install it from source, you can do as follows.

git clone https://github.com/berenslab/t-simcne
cd t-simcne
pip install .

Since the project uses a pyproject.toml file, you need to make sure that pip version is at least v22.3.1.

Usage example

The documentation is available at readthedocs. Below is a simple usage example.

import torch
import torchvision
from matplotlib import pyplot as plt
from tsimcne.tsimcne import TSimCNE

# get the cifar dataset (make sure to adapt `data_root` to point to your folder)
data_root = "experiments/cifar/out/cifar10"
dataset_train = torchvision.datasets.CIFAR10(
    root=data_root,
    download=True,
    train=True,
)
dataset_test = torchvision.datasets.CIFAR10(
    root=data_root,
    download=True,
    train=False,
)
dataset_full = torch.utils.data.ConcatDataset([dataset_train, dataset_test])

# create the object (here we run t-SimCNE with fewer epochs
# than in the paper; there we used [1000, 50, 450]).
tsimcne = TSimCNE(total_epochs=[500, 50, 250])

# train on the augmented/contrastive dataloader (this takes the most time)
tsimcne.fit(dataset_full)

# map the original images to 2D
Y = tsimcne.transform(dataset_full)

# get the original labels from the dataset
labels = [lbl for img, lbl in dataset_full]

# plot the data
fig, ax = plt.subplots()
ax.scatter(*Y.T, c=labels)
fig.savefig("tsimcne.png")

CIFAR-10

annotated plot of cifar10

CIFAR-100

label density for cifar100

Reproducibility

For reproducing the results of the paper, please see the iclr2023 branch in this repository.

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

tsimcne-0.4.17.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tsimcne-0.4.17-py3-none-any.whl (20.9 kB view details)

Uploaded Python 3

File details

Details for the file tsimcne-0.4.17.tar.gz.

File metadata

  • Download URL: tsimcne-0.4.17.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.1 CPython/3.13.1 Linux/6.12.7-arch1-1

File hashes

Hashes for tsimcne-0.4.17.tar.gz
Algorithm Hash digest
SHA256 2d4a92c85516c1982aabb3ec932f7abeb4df977ae9dedddb0e57e05b80089ce4
MD5 b40edcfdf0d80391af9327370389dd81
BLAKE2b-256 729ac8e9b6c0b0e8e98a1096f40553015ed014ae5d153f3a780939edf9bf4a27

See more details on using hashes here.

File details

Details for the file tsimcne-0.4.17-py3-none-any.whl.

File metadata

  • Download URL: tsimcne-0.4.17-py3-none-any.whl
  • Upload date:
  • Size: 20.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.1 CPython/3.13.1 Linux/6.12.7-arch1-1

File hashes

Hashes for tsimcne-0.4.17-py3-none-any.whl
Algorithm Hash digest
SHA256 6a5d29c9fb3aa3b6af23fe70836ff3b57c7bfb8c3ccd231725995a5b99e98256
MD5 5e77541c6d2e11dab825e5463c11db0a
BLAKE2b-256 f4a9fe664a974332189f13f6543f64ab154bd88d37d9e274cf0d1e52d231bb59

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page