MVN

nz.ac.waikato.cms.weka : SPegasos

Maven & Gradle

Apr 26, 2012

SPegasos · Implements the stochastic variant of the Pegasos (Primal Estimated sub-GrAdient SOlver for SVM) method of Shalev-Shwartz et al. (2007). This implementation globally replaces all missing values and transforms nominal attributes into binary ones. It also normalizes all attributes, so the coefficients in the output are based on the normalized data. Can either minimize the hinge loss (SVM) or log loss (logistic regression). For more information, see S. Shalev-Shwartz, Y. Singer, N. Srebro: Pegasos: Primal Estimated sub-GrAdient SOlver for SVM. In: 24th International Conference on MachineLearning, 807-814, 2007.

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

Latest Version

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

  • Latest Stable: 1.0.2

All Versions

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

Version Vulnerabilities Updated
1.0.x
SPegasos-1.0.2
SPegasos-1.0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>SPegasos</artifactId>
    <version>1.0.2</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'nz.ac.waikato.cms.weka:SPegasos:1.0.2'

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

implementation("nz.ac.waikato.cms.weka:SPegasos:1.0.2")

How to add a dependency to SBT Scala

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

libraryDependencies += "nz.ac.waikato.cms.weka" % "SPegasos" % "1.0.2"

Advertisement