An open API service indexing awesome lists of open source software.

https://github.com/danieldk/gosvm

Go binding for libsvm
https://github.com/danieldk/gosvm

Last synced: 29 days ago
JSON representation

Go binding for libsvm

Awesome Lists containing this project

README

        

## Warning

I put this repository back after someone's request. I do not intend to
maintain it or fix any issues with it ;).

## Introduction

gosvm is a package for training and using support vector machines (SVM)
in the Go programming language.

**Note:** This package is still new, its API may change, and not all
of libsvm's functionality may be available yet.

## Installation

The go command can be used to install this package:

go get github.com/danieldk/gosvm

The package documentation is available at: http://go.pkgdoc.org/github.com/danieldk/gosvm

## OpenMP

If you wish to use libsvm with OpenMP support for multicore processing, please use this command to install the package:

CGO_LDFLAGS="-lgomp" go get github.com/danieldk/gosvm

## Examples

Examples for using gosvm can be found at:

https://github.com/danieldk/gosvm-examples

## Links

There is a port of libsvm to Go (rather than a binding) at:

https://github.com/ewalker544/libsvm-go