turn-the-cam-anonymous's picture
adding CLIP taming
1ed7deb
raw history blame
No virus
292 Bytes
from setuptools import setup, find_packages
setup(
name='taming-transformers',
version='0.0.1',
description='Taming Transformers for High-Resolution Image Synthesis',
packages=find_packages(),
install_requires=[
'torch',
'numpy',
'tqdm',
],
)