MVN

nz.ac.waikato.cms.weka : linearForwardSelection

Maven & Gradle

Apr 26, 2012

linearForwardSelection · Extension of BestFirst. Takes a restricted number of k attributes into account. Fixed-set selects a fixed number k of attributes, whereas k is increased in each step when fixed-width is selected. The search uses either the initial ordering to select the top k attributes, or performs a ranking (with the same evalutator the search uses later on). The search direction can be forward, or floating forward selection (with opitional backward search steps). For more information see: Martin Guetlein (2006). Large Scale Attribute Selection Using Wrappers. Freiburg, Germany.

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

Latest Version

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

  • Latest Stable: 1.0.2

All Versions

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

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

How to add a dependency to Maven

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

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

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

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

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

How to add a dependency to SBT Scala

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

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