Use score-based generative models to generate new images.
Project description
Diffusion SDE - A score-based generative modelling with SDEs package
Synthesize new images using the score-based generative models.
Installation
Currently, diffusion_sde
supports release of Python 3.7 onwards.
To install the current release:
$ pip install -U diffusion_sde
Getting Started
Start by instantiating a dataset class with a path where the custom dataset is located
from diffusion_sde import datasets
# Specify the path of the custom dataset in the dataset class
ds = datasets(path_to_dataset)
Then, instantiate the diffSDE
class to train the model and generate samples and pass the dataset using .set_loaders()
method
from diffusion_sde import diffSDE
# Instantiate the diffSDE class
cls_diff = diffSDE()
# Set the dataloaders by passing the dataset instantiation as above
cls_diff.set_loaders(dataset=ds)
Begin the model training using the .train()
method and select the desired number of epochs for training.
# Train the model
cls_diff.train(n_iters)
Generate the samples from the trained model with the .generate_samples()
method and specify the desired number of steps for the sampler. We suggest setting the value of n_steps
in the range of $\sim1500$-$2000$ steps to produce high-quality samples
# Generate samples from the trained model
cls_diff.generate_samples(n_steps)
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 diffusion-sde-0.1.1.tar.gz
.
File metadata
- Download URL: diffusion-sde-0.1.1.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bef215e850b5f9d4c829e1b9a9e2def6a55d2aa10b9a5b33fb53eef0dbf06d6 |
|
MD5 | dae0ec56df3d94cb7de79a25f449c2aa |
|
BLAKE2b-256 | 999d103af7d4a1217292440acd804bc05562e36bc5ecad8ea5524b57ea356b7e |
File details
Details for the file diffusion_sde-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: diffusion_sde-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5101923a70fd326f85b03bd18b7eda9779702fd754d70ccc0621b3a3f00cb693 |
|
MD5 | 645aa8139dcbda5b29a0d6b8d5d265c1 |
|
BLAKE2b-256 | 8563c324e8a6cd753421980b7bf7f71b11bf7db98520d29236c53329919d3bbc |