offer training class to easily train model off an image directory

This commit is contained in:
Phil Wang
2020-09-06 14:22:44 -07:00
parent d8472a6220
commit 11f27032ba
4 changed files with 125 additions and 6 deletions
+3 -1
View File
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name = 'denoising-diffusion-pytorch',
packages = find_packages(),
version = '0.0.2',
version = '0.1.0',
license='MIT',
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
author = 'Phil Wang',
@@ -16,7 +16,9 @@ setup(
install_requires=[
'einops',
'numpy',
'pillow',
'torch',
'torchvision',
'tqdm'
],
classifiers=[