Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

15
math/svmlin/DESCR Normal file
View File

@@ -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

19
math/svmlin/Makefile Normal file
View File

@@ -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
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"

2
math/svmlin/PLIST Normal file
View File

@@ -0,0 +1,2 @@
@comment $NetBSD: PLIST,v 1.1 2016/07/30 15:13:57 cheusov Exp $
bin/svmlin

6
math/svmlin/distinfo Normal file
View File

@@ -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

View File

@@ -0,0 +1,4 @@
PROG = svmlin
SRCS = svmlin.cpp ssl.cpp
.include <mkc.mk>