Date: Tue, 26 Nov 2019 22:11:11 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518484 - in head/misc: . mmdnn Message-ID: <201911262211.xAQMBB4s023225@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Tue Nov 26 22:11:11 2019 New Revision: 518484 URL: https://svnweb.freebsd.org/changeset/ports/518484 Log: New port: misc/mmdnn: Tools to inter-operate among different deep learning frameworks Added: head/misc/mmdnn/ head/misc/mmdnn/Makefile (contents, props changed) head/misc/mmdnn/distinfo (contents, props changed) head/misc/mmdnn/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Tue Nov 26 21:53:25 2019 (r518483) +++ head/misc/Makefile Tue Nov 26 22:11:11 2019 (r518484) @@ -248,6 +248,7 @@ SUBDIR += metromap SUBDIR += mime-support SUBDIR += mirmon + SUBDIR += mmdnn SUBDIR += mmv SUBDIR += molequeue SUBDIR += morse Added: head/misc/mmdnn/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/mmdnn/Makefile Tue Nov 26 22:11:11 2019 (r518484) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= mmdnn +DISTVERSION= 0.2.5-21 +DISTVERSIONSUFFIX= -gc1c748e +CATEGORIES= misc python # machine-learning + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Tools to inter-operate among different deep learning frameworks + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}pillow>=3.1.0:graphics/py-pillow@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=3.6.0:devel/py-protobuf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= microsoft +GH_PROJECT= MMdnn +USE_PYTHON= distutils noflavors autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/misc/mmdnn/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/mmdnn/distinfo Tue Nov 26 22:11:11 2019 (r518484) @@ -0,0 +1,3 @@ +TIMESTAMP = 1574803092 +SHA256 (microsoft-MMdnn-0.2.5-21-gc1c748e_GH0.tar.gz) = a5ba7e8e07b28fdc5323678641c9370b20ec499490668a4376d8ddc2b3fc0fcd +SIZE (microsoft-MMdnn-0.2.5-21-gc1c748e_GH0.tar.gz) = 2265465 Added: head/misc/mmdnn/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/mmdnn/pkg-descr Tue Nov 26 22:11:11 2019 (r518484) @@ -0,0 +1,22 @@ +MMdnn is a set of tools to help users inter-operate among different deep +learning frameworks. E.g. model conversion and visualization. Convert models +between Caffe, Keras, MXNet, Tensorflow, CNTK, PyTorch Onnx and CoreML. + +A comprehensive, cross-framework solution to convert, visualize and diagnose +deep neural network models. The "MM" in MMdnn stands for model management and +"dnn" is an acronym for the deep neural network. + +Major features: +* Find model + - We provide a model collection to help you find some popular models + - We provide a model visualizer to display the network architecture more + intuitively +* Conversion + - We implement a universal converter to convert DNN models between + frameworks, which means you can train on one framework and deploy on another +* Retrain + - In the converter, we can generate some training/inference code snippet to + simplify the retrain/evaluate work +* Deployment + +WWW: https://github.com/microsoft/MMdnn
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911262211.xAQMBB4s023225>