misc/py-torchvision: New port: PyTorch: Datasets, transforms and models specific to computer vision
This commit is contained in:
parent
df996f8811
commit
0adf986558
4 changed files with 40 additions and 0 deletions
|
@ -466,6 +466,7 @@
|
|||
SUBDIR += py-tflite
|
||||
SUBDIR += py-tflite-support
|
||||
SUBDIR += py-toil
|
||||
SUBDIR += py-torchvision
|
||||
SUBDIR += py-tqdm
|
||||
SUBDIR += py-tvm
|
||||
SUBDIR += py-uhi
|
||||
|
|
34
misc/py-torchvision/Makefile
Normal file
34
misc/py-torchvision/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
PORTNAME= torchvision
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.15.2-rc2
|
||||
CATEGORIES= misc # machine-learning
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= PyTorch: Datasets, transforms and models specific to computer vision
|
||||
WWW= https://pytorch.org/vision/stable/index.html
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
LIB_DEPENDS= libpng16.so:graphics/png
|
||||
PY_DEPENDS= ${PYNUMPY} \
|
||||
${PYTHON_PKGNAMEPREFIX}pillow>=5.3.0:graphics/py-pillow@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytorch>0:misc/py-pytorch@${PY_FLAVOR}
|
||||
BUILD_DEPENDS= ${PY_DEPENDS}
|
||||
RUN_DEPENDS= ${PY_DEPENDS}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= distutils autoplist
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= pytorch
|
||||
GH_PROJECT= vision
|
||||
|
||||
post-install: # strip binaries
|
||||
@${STRIP_CMD} \
|
||||
${STAGEDIR}${PYTHON_SITELIBDIR}/torchvision/_C.so \
|
||||
${STAGEDIR}${PYTHON_SITELIBDIR}/torchvision/image.so
|
||||
|
||||
.include <bsd.port.mk>
|
3
misc/py-torchvision/distinfo
Normal file
3
misc/py-torchvision/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1683503135
|
||||
SHA256 (pytorch-vision-v0.15.2-rc2_GH0.tar.gz) = 415db127b72b5f2f3ea46f81b4cfcd49d97b72c0e2421bc6fcb6e9c80f634219
|
||||
SIZE (pytorch-vision-v0.15.2-rc2_GH0.tar.gz) = 13091064
|
2
misc/py-torchvision/pkg-descr
Normal file
2
misc/py-torchvision/pkg-descr
Normal file
|
@ -0,0 +1,2 @@
|
|||
The torchvision package consists of popular datasets, model architectures, and
|
||||
common image transformations for computer vision.
|
Loading…
Reference in a new issue