Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Feb 2019 11:53:43 +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: r492492 - in head/math: . py-keras-applications
Message-ID:  <201902091153.x19Brh0c096214@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Sat Feb  9 11:53:43 2019
New Revision: 492492
URL: https://svnweb.freebsd.org/changeset/ports/492492

Log:
  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

Added:
  head/math/py-keras-applications/
  head/math/py-keras-applications/Makefile   (contents, props changed)
  head/math/py-keras-applications/distinfo   (contents, props changed)
  head/math/py-keras-applications/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Sat Feb  9 11:04:39 2019	(r492491)
+++ head/math/Makefile	Sat Feb  9 11:53:43 2019	(r492492)
@@ -719,6 +719,7 @@
     SUBDIR += py-igraph
     SUBDIR += py-intspan
     SUBDIR += py-keras
+    SUBDIR += py-keras-applications
     SUBDIR += py-levmar
     SUBDIR += py-libpoly
     SUBDIR += py-luminol

Added: head/math/py-keras-applications/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-keras-applications/Makefile	Sat Feb  9 11:53:43 2019	(r492492)
@@ -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>

Added: head/math/py-keras-applications/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-keras-applications/distinfo	Sat Feb  9 11:53:43 2019	(r492492)
@@ -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

Added: head/math/py-keras-applications/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-keras-applications/pkg-descr	Sat Feb  9 11:53:43 2019	(r492492)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902091153.x19Brh0c096214>