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
- Host: GitHub
- URL: https://github.com/danieldk/gosvm
- Owner: danieldk
- Created: 2014-07-21T09:09:30.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-03-30T07:14:34.000Z (about 8 years ago)
- Last Synced: 2025-04-23T04:17:52.737Z (29 days ago)
- Language: Go
- Homepage:
- Size: 22.5 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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