MVN

nz.ac.waikato.cms.weka : RBFNetwork

Maven & Gradle

Jan 16, 2015

RBFNetwork · RBFNetwork implements a normalized Gaussian radial basisbasis function network. It uses the k-means clustering algorithm to provide the basis functions and learns either a logistic regression (discrete class problems) or linear regression (numeric class problems) on top of that. Symmetric multivariate Gaussians are fit to the data from each cluster. If the class is nominal it uses the given number of clusters per class. RBFRegressor implements radial basis function networks for regression, trained in a fully supervised manner using WEKA's Optimization class by minimizing squared error with the BFGS method. It is possible to use conjugate gradient descent rather than BFGS updates, which is faster for cases with many parameters, and to use normalized basis functions instead of unnormalized ones.

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

Latest Version

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

  • Latest Stable: 1.0.8

All Versions

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

Version Vulnerabilities Updated
1.0.x
RBFNetwork-1.0.8
RBFNetwork-1.0.7
RBFNetwork-1.0.6
RBFNetwork-1.0.4
RBFNetwork-1.0.3
RBFNetwork-1.0.2

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>RBFNetwork</artifactId>
    <version>1.0.8</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'nz.ac.waikato.cms.weka:RBFNetwork:1.0.8'

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

implementation("nz.ac.waikato.cms.weka:RBFNetwork:1.0.8")

How to add a dependency to SBT Scala

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

libraryDependencies += "nz.ac.waikato.cms.weka" % "RBFNetwork" % "1.0.8"