Lightly is a computer vision framework for self-supervised learning.
We, at Lightly, are passionate engineers who want to make deep learning more efficient. We want to help popularize the use of self-supervised methods to understand and filter raw image data. Our solution can be applied before any data annotation step and the learned representations can be used to analyze and visualize datasets as well as for selecting a core set of samples.
Want to jump to the tutorials and see lightly in action?
- Dataset: A collection of raw images.
- Embedding: Representation of an image in a vector space.
- Embedding Model: Function (typically a convolutional neural network) to create embeddings from images.
- Self-supervised Learning: A form of unsupervised learning where the data provides the supervision.
Lightly requires Python 3.6+. We recommend installing Lightly in a Linux or OSX environment.
- hydra-core>=1.0.0
- numpy>=1.18.1
- pytorch_lightning>=0.10.0
- requests>=2.23.0
- torchvision
- tqdm
You can install Lightly and its dependencies from PyPI with:
pip3 install lightly
We strongly recommend that you install Lightly in a dedicated virtualenv, to avoid conflicting with your system packages.
Lightly is accessible also through a command-line interface (CLI). To train a SimCLR model on a folder of images you can simply run the following command:
lightly-train input_dir=/mydataset
To create an embedding of a dataset you can use:
lightly-embed input_dir=/mydataset checkpoint=/mycheckpoint
The embeddings with the corresponding filename are stored in a human-readable .csv file.
Head to the documentation and see the things you can achieve with Lightly!
To install dev dependencies (for example to contribute to the framework) you can use the following command:
pip3 install -e ".[dev]"
For more information about how to contribute have a look here.
Unit tests are within the tests
folder and we recommend to run them using
pytest.
There are two test configurations available. By default only a subset will be run.
This is faster and should take less than a minute. You can run it using
python -m pytest -s -v
To run all tests (including the slow ones) you can use the following command.
python -m pytest -s -v --runslow
We provide a Pylint config following the Google Python Style Guide.
You can run the linter from your terminal either on a folder
pylint lightly/
or on a specific file
pylint lightly/core.py
Self-supervised Learning:
- A Simple Framework for Contrastive Learning of Visual Representations (2020)
- Momentum Contrast for Unsupervised Visual Representation Learning (2020)
- Unsupervised Learning of Visual Features by Contrasting Cluster Assignments (2020)
- What Should Not Be Contrastive in Contrastive Learning (2020)
-
Why should I care about self-supervised learning? Aren't pre-trained models from ImageNet much better for transfer learning?
- Self-supervised learning has become increasingly popular among scientists over the last year because the learned representations perform extraordinarily well on downstream tasks. This means that they capture the important information in an image better than other types of pre-trained models. By training a self-supervised model on your dataset, you can make sure that the representations have all the necessary information about your images.
-
How can I contribute?
- Create an issue if you encounter bugs or have ideas for features we should implement. You can also add your own code by forking this repository and creating a PR. More details about how to contribute with code is in our contribution guide.
-
Is this framework for free?
- Yes, this framework completely free to use and we provide the code. We believe that we need to make training deep learning models more data efficient to achieve widespread adoption. One step to achieve this goal is by leveraging self-supervised learning. The company behind lightly commited to keep this framework open-source.
-
If this framework is free, how is the company behind lightly making money?
- Training self-supervised models is only part of the solution. The company behind lightly focuses on processing and analyzing embeddings created by self-supervised models. By building, what we call a self-supervised active learning loop we help companies understand and work with their data more efficiently. This framework acts as an interface for our platform to easily upload and download datasets, embeddings and models. Whereas the platform will cost for additional features this frameworks will always remain free of charge (even for commercial use).