From 97a65c99c319164e7f59cb43fa1bcb4fa146b08a Mon Sep 17 00:00:00 2001 From: Pawel Pekala Date: Wed, 22 Jun 2016 17:14:44 +0000 Subject: [PATCH] Deep Learning library for Python. Convnets, recurrent neural networks, and more. Runs on Theano and TensorFlow. WWW: http://keras.io/ PR: 210119 Submitted by: Neel Chauhan --- math/Makefile | 1 + math/py-keras/Makefile | 24 ++++++++++++++++++++++++ math/py-keras/distinfo | 3 +++ math/py-keras/pkg-descr | 4 ++++ 4 files changed, 32 insertions(+) create mode 100644 math/py-keras/Makefile create mode 100644 math/py-keras/distinfo create mode 100644 math/py-keras/pkg-descr diff --git a/math/Makefile b/math/Makefile index 8c2ab2684d59..ca6e81fa9617 100644 --- a/math/Makefile +++ b/math/Makefile @@ -603,6 +603,7 @@ SUBDIR += py-gsl SUBDIR += py-igraph SUBDIR += py-intspan + SUBDIR += py-keras SUBDIR += py-luminol SUBDIR += py-mathdom SUBDIR += py-matplotlib diff --git a/math/py-keras/Makefile b/math/py-keras/Makefile new file mode 100644 index 000000000000..f31d825ad531 --- /dev/null +++ b/math/py-keras/Makefile @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= keras +PORTVERSION= 1.0.4 +CATEGORIES= math +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= neel@neelc.org +COMMENT= Deep Learning library for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}theano>=0.8.0:math/py-theano \ + ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml \ + ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six \ + +USE_GITHUB= yes +GH_ACCOUNT= fchollet + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include diff --git a/math/py-keras/distinfo b/math/py-keras/distinfo new file mode 100644 index 000000000000..46f5a41773a0 --- /dev/null +++ b/math/py-keras/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1465323531 +SHA256 (fchollet-keras-1.0.4_GH0.tar.gz) = 64abdd31dabb1abf704b922412e190fde8fe6777d1ff6396e48e75ff51024364 +SIZE (fchollet-keras-1.0.4_GH0.tar.gz) = 211314 diff --git a/math/py-keras/pkg-descr b/math/py-keras/pkg-descr new file mode 100644 index 000000000000..2b55073b05fd --- /dev/null +++ b/math/py-keras/pkg-descr @@ -0,0 +1,4 @@ +Deep Learning library for Python. Convnets, recurrent neural networks, and +more. Runs on Theano and TensorFlow. + +WWW: http://keras.io/