1 Star 0 Fork 0

zhangsan/DSFD-Pytorch-Inference

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 967 Bytes
一键复制 编辑 原始数据 按行查看 历史
Håkon Hukkelås 提交于 2022-12-01 11:43 . Update setup.py
import setuptools
import torch
import torchvision
torch_ver = [int(x) for x in torch.__version__.split(".")[:2]]
assert torch_ver >= [1, 6], "Requires PyTorch >= 1.6"
torchvision_ver = [int(x) for x in torchvision.__version__.split(".")[:2]]
assert torchvision_ver >= [0, 3], "Requires torchvision >= 0.3"
setuptools.setup(
name="face_detection",
version="0.2.1",
author="Håkon Hukkelås",
description="A simple and lightweight package for state of the art face detection with GPU support.",
long_description="".join(open("README.md", "r").readlines()),
long_description_content_type="text/markdown",
url="https://github.com/hukkelas/DSFD-Pytorch-Inference",
python_requires='>=3.6',
license="apache-2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"numpy",
],
packages=setuptools.find_packages()
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhangsanstar/DSFD-Pytorch-Inference.git
[email protected]:zhangsanstar/DSFD-Pytorch-Inference.git
zhangsanstar
DSFD-Pytorch-Inference
DSFD-Pytorch-Inference
master

搜索帮助