[example] migrate diffusion and auto_parallel hands-on (#1871)

This commit is contained in:
binmakeswell
2022-11-10 15:31:46 +08:00
committed by GitHub
parent e6ec99d389
commit 610dda676c
54 changed files with 13354 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from setuptools import setup, find_packages
setup(
name='latent-diffusion',
version='0.0.1',
description='',
packages=find_packages(),
install_requires=[
'torch',
'numpy',
'tqdm',
],
)