1 Star 0 Fork 2

yizhangliu/imagen-pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
exec(open('imagen_pytorch/version.py').read())
setup(
name = 'imagen-pytorch',
packages = find_packages(exclude=[]),
include_package_data = True,
entry_points={
'console_scripts': [
'imagen_pytorch = imagen_pytorch.cli:main',
'imagen = imagen_pytorch.cli:imagen'
],
},
version = __version__,
license='MIT',
description = 'Imagen - unprecedented photorealism × deep level of language understanding',
author = 'Phil Wang',
author_email = 'lucidrains@gmail.com',
long_description_content_type = 'text/markdown',
url = 'https://github.com/lucidrains/imagen-pytorch',
keywords = [
'artificial intelligence',
'deep learning',
'transformers',
'text-to-image',
'denoising-diffusion'
],
install_requires=[
'accelerate',
'click',
'einops>=0.4',
'einops-exts',
'ema-pytorch>=0.0.3',
'fsspec',
'kornia',
'numpy',
'packaging',
'pillow',
'pydantic',
'pytorch-lightning',
'pytorch-warmup',
'sentencepiece',
'torch>=1.6',
'torchvision',
'transformers',
'tqdm'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yizhangliu/imagen-pytorch.git
git@gitee.com:yizhangliu/imagen-pytorch.git
yizhangliu
imagen-pytorch
imagen-pytorch
main

搜索帮助