mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-05-07 07:58:27 +00:00
* Add handson to ColossalAI. * Change names of handsons and edit sequence parallel example. * Edit wrong folder name * resolve conflict * delete readme
13 lines
233 B
Python
13 lines
233 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='latent-diffusion',
|
|
version='0.0.1',
|
|
description='',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'torch',
|
|
'numpy',
|
|
'tqdm',
|
|
],
|
|
) |