1 Star 0 Fork 0

DWHNicholas/TransNetV2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 579 Bytes
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup
setup(
name="transnetv2",
version="1.0.0",
# let user install tensorflow, etc. manually
# install_requires=[
# "tensorflow>=2.0",
# "ffmpeg-python",
# "pillow"
# ],
entry_points={
"console_scripts": [
"transnetv2_predict = transnetv2.transnetv2:main",
]
},
packages=["transnetv2"],
package_dir={"transnetv2": "./inference"},
package_data={"transnetv2": [
"transnetv2-weights/*",
"transnetv2-weights/variables/*"
]},
zip_safe=False
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dwhnicholas/TransNetV2.git
[email protected]:dwhnicholas/TransNetV2.git
dwhnicholas
TransNetV2
TransNetV2
master

搜索帮助