Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
abatecx
/
stable_diffusion
like
1
arxiv:
5 papers
Model card
Files
Files and versions
Community
673ae14
stable_diffusion
/
setup.py
abatecx
Upload 138 files
673ae14
over 1 year ago
raw
Copy download link
history
blame
Safe
233 Bytes
from
setuptools
import
setup, find_packages
setup(
name=
'latent-diffusion'
,
version=
'0.0.1'
,
description=
''
,
packages=find_packages(),
install_requires=[
'torch'
,
'numpy'
,
'tqdm'
,
],
)