MVN

nz.ac.waikato.cms.weka : LibSVM

Maven & Gradle

Nov 20, 2016
3 usages

LibSVM · A wrapper class for the libsvm tools (the libsvm classes, typically the jar file, need to be in the classpath to use this classifier). LibSVM runs faster than SMO since it uses LibSVM to build the SVM classifier. LibSVM allows users to experiment with One-class SVM, Regressing SVM, and nu-SVM supported by LibSVM tool. LibSVM reports many useful statistics about LibSVM classifier (e.g., confusion matrix,precision, recall, ROC score, etc.)

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>LibSVM</artifactId>
    <version>1.0.10</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of nz.ac.waikato.cms.weka : LibSVM to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.10

All Versions

Choose a version of nz.ac.waikato.cms.weka : LibSVM to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
LibSVM-1.0.10
LibSVM-1.0.9
LibSVM-1.0.8
LibSVM-1.0.7
LibSVM-1.0.6
LibSVM-1.0.5
LibSVM-1.0.4
LibSVM-1.0.3

How to add a dependency to Maven

Add the following nz.ac.waikato.cms.weka : LibSVM maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>LibSVM</artifactId>
    <version>1.0.10</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following nz.ac.waikato.cms.weka : LibSVM gradle dependency to your build.gradle file:

implementation 'nz.ac.waikato.cms.weka:LibSVM:1.0.10'

Gradle Kotlin DSL: Add the following nz.ac.waikato.cms.weka : LibSVM gradle kotlin dependency to your build.gradle.kts file:

implementation("nz.ac.waikato.cms.weka:LibSVM:1.0.10")

How to add a dependency to SBT Scala

SBT Scala: Add the following nz.ac.waikato.cms.weka : LibSVM sbt scala dependency to your build.sbt file:

libraryDependencies += "nz.ac.waikato.cms.weka" % "LibSVM" % "1.0.10"

Advertisement