Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

diffusion-sde-0.1.1.tar.gz (18.5 kB view hashes)

Uploaded Source

Built Distribution

diffusion_sde-0.1.1-py2.py3-none-any.whl (20.5 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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