MVN

nz.ac.waikato.cms.weka : paceRegression

Maven & Gradle

Apr 26, 2012

paceRegression · Class for building pace regression linear models and using them for prediction. Under regularity conditions, pace regression is provably optimal when the number of coefficients tends to infinity. It consists of a group of estimators that are either overall optimal or optimal under certain conditions. The current work of the pace regression theory, and therefore also this implementation, do not handle: - missing values - non-binary nominal attributes - the case that n - k is small where n is the number of instances and k is the number of coefficients (the threshold used in this implmentation is 20) For more information see: Wang, Y (2000). A new approach to fitting linear models in high dimensional spaces. Hamilton, New Zealand. Wang, Y., Witten, I. H.: Modeling for optimal probability prediction. In: Proceedings of the Nineteenth International Conference in Machine Learning, Sydney, Australia, 650-657, 2002.

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

Latest Version

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

  • Latest Stable: 1.0.2

All Versions

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

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

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>paceRegression</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 : paceRegression gradle dependency to your build.gradle file:

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

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

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

How to add a dependency to SBT Scala

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

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

Advertisement