Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Jan 2020 02:56:27 +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: r521794 - in head/misc: . nn-insight
Message-ID:  <202001020256.0022uRQb002902@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Thu Jan  2 02:56:26 2020
New Revision: 521794
URL: https://svnweb.freebsd.org/changeset/ports/521794

Log:
  New port: misc/nn-insight: Neural network visualization software

Added:
  head/misc/nn-insight/
  head/misc/nn-insight/Makefile   (contents, props changed)
  head/misc/nn-insight/distinfo   (contents, props changed)
  head/misc/nn-insight/pkg-descr   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Thu Jan  2 02:16:03 2020	(r521793)
+++ head/misc/Makefile	Thu Jan  2 02:56:26 2020	(r521794)
@@ -259,6 +259,7 @@
     SUBDIR += najitool
     SUBDIR += netron
     SUBDIR += nms
+    SUBDIR += nn-insight
     SUBDIR += nnn
     SUBDIR += nsf
     SUBDIR += numchar

Added: head/misc/nn-insight/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/nn-insight/Makefile	Thu Jan  2 02:56:26 2020	(r521794)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	nn-insight
+DISTVERSION=	0.1
+CATEGORIES=	misc # machine-learning
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Neural network visualization software
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	avir>0:graphics/avir \
+		flatbuffers>0:devel/flatbuffers \
+		nlohmann-json>0:devel/nlohmann-json \
+		png++>0:graphics/png++
+LIB_DEPENDS=	libcgraph.so:graphics/graphviz \
+		libpng16.so:graphics/png \
+		libtcmalloc.so:devel/google-perftools
+
+USES=		compiler:c++17-lang cmake pkgconfig qt:5
+USE_GITHUB=	yes
+GH_ACCOUNT=	yurivict
+USE_QT=		core gui svg widgets buildtools_build qmake_build
+
+PLIST_FILES=	bin/nn-insight \
+		libexec/nn-insight/tf-lite-plugin.so
+
+.include <bsd.port.mk>

Added: head/misc/nn-insight/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/nn-insight/distinfo	Thu Jan  2 02:56:26 2020	(r521794)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1577933404
+SHA256 (yurivict-nn-insight-0.1_GH0.tar.gz) = f533e34b6799beabf6627ac6d141c125c30f5392b2fd077e9df3e11f78941398
+SIZE (yurivict-nn-insight-0.1_GH0.tar.gz) = 427489

Added: head/misc/nn-insight/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/nn-insight/pkg-descr	Thu Jan  2 02:56:26 2020	(r521794)
@@ -0,0 +1,6 @@
+nn-insight visualizes how neural networks work.
+
+It graphically shows the structure of the network, allows to select or paste
+an image, perform computations with it, and inspect results of the computation.
+
+WWW: https://github.com/yurivict/nn-insight



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