Date: Sat, 9 Feb 2019 11:54:12 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492493 - in head/math: . py-keras-preprocessing Message-ID: <201902091154.x19BsCdK096414@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rm Date: Sat Feb 9 11:54:12 2019 New Revision: 492493 URL: https://svnweb.freebsd.org/changeset/ports/492493 Log: Keras Preprocessing is the data preprocessing and data augmentation module of the Keras deep learning library. It provides utilities for working with image data, text data, and sequence data. WWW: https://github.com/keras-team/keras-preprocessing Added: head/math/py-keras-preprocessing/ head/math/py-keras-preprocessing/Makefile (contents, props changed) head/math/py-keras-preprocessing/distinfo (contents, props changed) head/math/py-keras-preprocessing/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Feb 9 11:53:43 2019 (r492492) +++ head/math/Makefile Sat Feb 9 11:54:12 2019 (r492493) @@ -720,6 +720,7 @@ SUBDIR += py-intspan SUBDIR += py-keras SUBDIR += py-keras-applications + SUBDIR += py-keras-preprocessing SUBDIR += py-levmar SUBDIR += py-libpoly SUBDIR += py-luminol Added: head/math/py-keras-preprocessing/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-keras-preprocessing/Makefile Sat Feb 9 11:54:12 2019 (r492493) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= keras-preprocessing +DISTVERSION= 1.0.9 +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Easy data preprocessing and data augmentation for DL models + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= keras-team +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/math/py-keras-preprocessing/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-keras-preprocessing/distinfo Sat Feb 9 11:54:12 2019 (r492493) @@ -0,0 +1,3 @@ +TIMESTAMP = 1549711988 +SHA256 (keras-team-keras-preprocessing-1.0.9_GH0.tar.gz) = 045a9b3faf4f6d63493cc3ca396659cc0395727b280c988fb9b6c7ff8157f09b +SIZE (keras-team-keras-preprocessing-1.0.9_GH0.tar.gz) = 46476 Added: head/math/py-keras-preprocessing/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-keras-preprocessing/pkg-descr Sat Feb 9 11:54:12 2019 (r492493) @@ -0,0 +1,5 @@ +Keras Preprocessing is the data preprocessing and data augmentation module of +the Keras deep learning library. It provides utilities for working with image +data, text data, and sequence data. + +WWW: https://github.com/keras-team/keras-preprocessing
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902091154.x19BsCdK096414>