diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2019-02-09 11:53:43 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2019-02-09 11:53:43 +0000 |
commit | 3cb18ec9cc827a5b16f57c7aa4ef119702b45389 (patch) | |
tree | f61252697d8b88af8fbfc51c57090fdc3df40adc /math/py-keras-applications | |
parent | graphics/ufraw: Simplify using the GTK2 plist sub already added by OPTIONS_SUB (diff) |
This is a Keras Applications module of the Keras deep learning library.
It provides model definitions and pre-trained weights for a number of popular
archictures, such as VGG16, ResNet50, Xception, MobileNet, and more.
WWW: https://github.com/keras-team/keras-applications
Notes
Notes:
svn path=/head/; revision=492492
Diffstat (limited to 'math/py-keras-applications')
-rw-r--r-- | math/py-keras-applications/Makefile | 24 | ||||
-rw-r--r-- | math/py-keras-applications/distinfo | 3 | ||||
-rw-r--r-- | math/py-keras-applications/pkg-descr | 5 |
3 files changed, 32 insertions, 0 deletions
diff --git a/math/py-keras-applications/Makefile b/math/py-keras-applications/Makefile new file mode 100644 index 000000000000..695c85196610 --- /dev/null +++ b/math/py-keras-applications/Makefile @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= keras-applications +DISTVERSION= 1.0.7 +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Reference implementations of popular deep learning models + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}h5py>=0:science/py-h5py@${PY_FLAVOR} + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= keras-team +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/math/py-keras-applications/distinfo b/math/py-keras-applications/distinfo new file mode 100644 index 000000000000..575d3af2bb7f --- /dev/null +++ b/math/py-keras-applications/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1549711326 +SHA256 (keras-team-keras-applications-1.0.7_GH0.tar.gz) = 8580a885c8abe4bf8429cb0e551f23e79b14eda73d99138cfa1d355968dd4b0a +SIZE (keras-team-keras-applications-1.0.7_GH0.tar.gz) = 289570 diff --git a/math/py-keras-applications/pkg-descr b/math/py-keras-applications/pkg-descr new file mode 100644 index 000000000000..52c317526573 --- /dev/null +++ b/math/py-keras-applications/pkg-descr @@ -0,0 +1,5 @@ +This is a Keras Applications module of the Keras deep learning library. +It provides model definitions and pre-trained weights for a number of popular +archictures, such as VGG16, ResNet50, Xception, MobileNet, and more. + +WWW: https://github.com/keras-team/keras-applications |