package libsvm

  1. Overview
  2. Docs
LIBSVM bindings for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

0.10.0.tar.gz
md5=14d78e69ec457e1516902370cc8d1783
sha512=0b1e2ec5aff0c9f43504780b88cb1c18b42aa60ad6e00dacedf8ae44e7d5ec02305ee29fef837f190bfcdec8ff4c992a0bf6e67dc72875e4d20f8a9eba2672ef

Description

LIBSVM bindings for OCaml

LIBSVM-OCaml is an OCaml library with bindings to the LIBSVM library, which is a library for Support Vector Machines. Support Vector Machines are used to create supervised learning models for classification and regression problems in machine learning.

Published: 06 Sep 2019

README

LIBSVM-OCaml - LIBSVM Bindings for OCaml

LIBSVM-OCaml is an OCaml library with bindings to the LIBSVM library, which is a library for Support Vector Machines. Support Vector Machines are used to create supervised learning models for classification and regression problems in machine learning.

Installation

From OPAM

$ opam install libsvm

From Source

$ make
$ make install

Usage

Documentation

The API-documentation of this distribution can be built with make doc. It can also be found online.

Examples

This simple program solves the famous XOR-problem:

:::ocaml
open Lacaml.D
open Libsvm

let () =
  let x = Mat.of_array
    [|
      [| 0.; 0. |];
      [| 0.; 1. |];
      [| 1.; 0. |];
      [| 1.; 1. |];
    |]
  in
  let targets = Vec.of_array [| 0.; 1.; 1.; 0. |] in
  let problem = Svm.Problem.create ~x ~y:targets in
  let model = Svm.train ~kernel:`RBF problem in
  let y = Svm.predict model ~x in
  for i = 1 to 4 do
    Printf.printf "(%1.0f, %1.0f) -> %1.0f\n" x.{i,1} x.{i,2} y.{i}
  done

For more examples please refer to the examples- or test-directory of this distribution.

Credits

  • Dominik Brugger wrote the initial release (0.1) of this library.

Contact Information

In case of bugs, feature requests and similar, please contact:

Dependencies (5)

  1. stdio
  2. ocaml >= "4.03.0" & < "5.0.0"
  3. lacaml >= "10.0.0"
  4. dune >= "1.10"
  5. base

Dev Dependencies (1)

  1. core_kernel with-test

Used by

None

Conflicts

None