New port: misc/py-tflite: Parse TensorFlow Lite models in Python

This commit is contained in:
Yuri Victorovich 2019-11-24 17:48:33 +00:00
parent 9791df5e18
commit b1fe97b28d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=518341
4 changed files with 34 additions and 0 deletions

View file

@ -411,6 +411,7 @@
SUBDIR += py-spdx-lookup
SUBDIR += py-spdx-tools
SUBDIR += py-tflearn
SUBDIR += py-tflite
SUBDIR += py-toil
SUBDIR += py-tqdm
SUBDIR += py-tvm

24
misc/py-tflite/Makefile Normal file
View file

@ -0,0 +1,24 @@
# $FreeBSD$
PORTNAME= tflite
DISTVERSION= g20191030
CATEGORIES= misc python # machine-learning
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= yuri@FreeBSD.org
COMMENT= Parse TensorFlow Lite models in Python
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flatbuffers>0:devel/py-flatbuffers@${PY_FLAVOR}
USES= python
USE_PYTHON= distutils autoplist
USE_GITHUB= yes
GH_ACCOUNT= jackwish
GH_TAGNAME= 7814b03
NO_ARCH= yes
.include <bsd.port.mk>

3
misc/py-tflite/distinfo Normal file
View file

@ -0,0 +1,3 @@
TIMESTAMP = 1574616813
SHA256 (jackwish-tflite-g20191030-7814b03_GH0.tar.gz) = cc8dd90d9b11d9a97945f8068ed6d1aab42473bf416e8b1f13415d5bcfad178f
SIZE (jackwish-tflite-g20191030-7814b03_GH0.tar.gz) = 3883211

6
misc/py-tflite/pkg-descr Normal file
View file

@ -0,0 +1,6 @@
Python package to parse TFLite models (*.tflite) easily.
The tflite package is built to parse the TFLite models from the schema.fbs
file supplied in the TensorFlow project.
WWW: https://jackwish.net/tflite/