pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/math/svmlin Import svmlin, semi-supervised machine lea...
details: https://anonhg.NetBSD.org/pkgsrc/rev/988b45030868
branches: trunk
changeset: 350581:988b45030868
user: cheusov <cheusov%pkgsrc.org@localhost>
date: Sat Jul 30 15:13:57 2016 +0000
description:
Import svmlin, semi-supervised machine learning tool
diffstat:
math/svmlin/DESCR | 15 +++++++++++++++
math/svmlin/Makefile | 19 +++++++++++++++++++
math/svmlin/PLIST | 2 ++
math/svmlin/distinfo | 6 ++++++
math/svmlin/files/mkc_makefile | 4 ++++
5 files changed, 46 insertions(+), 0 deletions(-)
diffs (66 lines):
diff -r 17a9181e126a -r 988b45030868 math/svmlin/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/math/svmlin/DESCR Sat Jul 30 15:13:57 2016 +0000
@@ -0,0 +1,15 @@
+SVMlin is software package for linear SVMs. It is well-suited to
+classification problems involving a large number of examples and features.
+It is primarily written for sparse datasets.
+
+SVMlin can also utilize unlabeled data, in addition to labeled examples.
+It currently implements two extensions of standard SVMs to incorporate
+unlabeled examples.
+
+SVMlin implements the following algorithms:
+ - Fully supervised [using only labeled examples]
+ * Linear Regularized Least Squares (RLS) Classification
+ * Modified Finite Newton Linear L2-SVMs
+ - Semi-supervised [can use unlabeled data as well]
+ * Linear Transductive L2-SVMs with multiple switchings
+ * Deterministic Annealing (DA) for Semi-supervised Linear L2-SVMs
diff -r 17a9181e126a -r 988b45030868 math/svmlin/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/math/svmlin/Makefile Sat Jul 30 15:13:57 2016 +0000
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1 2016/07/30 15:13:57 cheusov Exp $
+
+DISTNAME= svmlin-v1.0
+PKGNAME= ${DISTNAME:S/-v/-/}
+CATEGORIES= math
+MASTER_SITES= http://vikas.sindhwani.org/
+
+MAINTAINER= cheusov%NetBSD.org@localhost
+HOMEPAGE= http://vikas.sindhwani.org/
+COMMENT= Fast Linear SVM Solvers for Supervised and Semi-supervised Learning
+LICENSE= gnu-gpl-v2
+
+USE_LANGUAGES= c++
+
+post-extract:
+ cp "${FILESDIR}/mkc_makefile" "${WRKSRC}"/Makefile
+
+.include "../../devel/mk-configure/mk-c.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 17a9181e126a -r 988b45030868 math/svmlin/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/math/svmlin/PLIST Sat Jul 30 15:13:57 2016 +0000
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1 2016/07/30 15:13:57 cheusov Exp $
+bin/svmlin
diff -r 17a9181e126a -r 988b45030868 math/svmlin/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/math/svmlin/distinfo Sat Jul 30 15:13:57 2016 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2016/07/30 15:13:57 cheusov Exp $
+
+SHA1 (svmlin-v1.0.tar.gz) = 9032ee31d942ee85650c8b3ae43e8ab3a6486791
+RMD160 (svmlin-v1.0.tar.gz) = 730132b7c06e67436222abf88935570d9e425e7f
+SHA512 (svmlin-v1.0.tar.gz) = f2438714924dd93ad2de8be71397800838d77044624263c26903faa9bd18dbe657a2d3e600016df8b5ee1f7daee11dd0b38b06b6e921ab03511fd89f4a268b32
+Size (svmlin-v1.0.tar.gz) = 1068173 bytes
diff -r 17a9181e126a -r 988b45030868 math/svmlin/files/mkc_makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/math/svmlin/files/mkc_makefile Sat Jul 30 15:13:57 2016 +0000
@@ -0,0 +1,4 @@
+PROG = svmlin
+SRCS = svmlin.cpp ssl.cpp
+
+.include <mkc.mk>
Home |
Main Index |
Thread Index |
Old Index