All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download nz.ac.waikato.cms.weka.thirdparty JAR files with all dependencies


nimrodlf from group net.sf.squirrel-sql.thirdparty-non-maven (version 1.1)

NimROD Look and Feel is an extension of the Metal Look and Feel, so it should be a portable look and feel. This POM was contributed by Rob Manning and can be used to build this laf from the original source code if the source code is structured according to Maven conventions.

Group: net.sf.squirrel-sql.thirdparty-non-maven Artifact: nimrodlf

Download nimrodlf.jar (1.1)
 

6 downloads


XMeans from group nz.ac.waikato.cms.weka (version 1.0.6)

Cluster data using the X-means algorithm. X-Means is K-Means extended by an Improve-Structure part In this part of the algorithm the centers are attempted to be split in its region. The decision between the children of each center and itself is done comparing the BIC-values of the two structures. For more information see: Dan Pelleg, Andrew W. Moore: X-means: Extending K-means with Efficient Estimation of the Number of Clusters. In: Seventeenth International Conference on Machine Learning, 727-734, 2000.

Group: nz.ac.waikato.cms.weka Artifact: XMeans

Download XMeans.jar (1.0.6)
 

6 downloads
Artifact XMeans
Group nz.ac.waikato.cms.weka
Version 1.0.6


org.openide.util.lookup from group com.github.veithen.visualwas.thirdparty (version 1.0.0)

Group: com.github.veithen.visualwas.thirdparty Artifact: org.openide.util.lookup

Download org.openide.util.lookup.jar (1.0.0)
 

6 downloads


fuzzyUnorderedRuleInduction from group nz.ac.waikato.cms.weka (version 1.0.2)

FURIA: Fuzzy Unordered Rule Induction Algorithm. For details please see: Jens Christian Huehn, Eyke Huellermeier (2009). FURIA: An Algorithm for Unordered Fuzzy Rule Induction. Data Mining and Knowledge Discovery.

Group: nz.ac.waikato.cms.weka Artifact: fuzzyUnorderedRuleInduction

Download fuzzyUnorderedRuleInduction.jar (1.0.2)
 

5 downloads


com-fifesoft-rsyntaxtextarea from group net.sf.squirrel-sql.thirdparty-non-maven (version 1.0.0)

An extension of RTextArea that adds syntax highlighting of certain programming languages to its list of features.

Group: net.sf.squirrel-sql.thirdparty-non-maven Artifact: com-fifesoft-rsyntaxtextarea

Download com-fifesoft-rsyntaxtextarea.jar (1.0.0)
 

5 downloads


LibSVM from group nz.ac.waikato.cms.weka (version 1.0.6)

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.)

Group: nz.ac.waikato.cms.weka Artifact: LibSVM

Download LibSVM.jar (1.0.6)
 

5 downloads
Artifact LibSVM
Group nz.ac.waikato.cms.weka
Version 1.0.6


hbase-shaded-protobuf from group org.apache.hbase.thirdparty (version 2.1.0)

Pulls down protobuf, patches it, compiles, and then relocates/shades.

Group: org.apache.hbase.thirdparty Artifact: hbase-shaded-protobuf

Download hbase-shaded-protobuf.jar (2.1.0)
 

5 downloads


xen-api from group net.java.dev.vcc.thirdparty (version 6.2.0-3.1)

Mavenized build of the XenServer SDK for Java.

Group: net.java.dev.vcc.thirdparty Artifact: xen-api
Show documentation Show source 
Download xen-api.jar (6.2.0-3.1)
 

5 downloads
Artifact xen-api
Group net.java.dev.vcc.thirdparty
Version 6.2.0-3.1


napkinlaf from group net.sf.squirrel-sql.thirdparty-non-maven (version 1.2)

The Napkin Look and Feel is a pluggable look and feel for Java Swing that makes the UI look as if it was hand-sketched on a napkin. This provisional look is designed tfor use during project development so that provisional parts of the UI look provisional, but of course you may use it for anything you like.

Group: net.sf.squirrel-sql.thirdparty-non-maven Artifact: napkinlaf

Download napkinlaf.jar (1.2)
 

5 downloads


modeljunit from group nz.ac.waikato.modeljunit (version 2.5)

Java library and GUI for supporting Model-Based Testing. The models are extended finite state machines (EFSM) that are written in Java.

Group: nz.ac.waikato.modeljunit Artifact: modeljunit

Download modeljunit.jar (2.5)
 

5 downloads
Artifact modeljunit
Group nz.ac.waikato.modeljunit
Version 2.5


timeseriesForecasting from group nz.ac.waikato.cms.weka (version 1.0.25)

Provides a time series forecasting environment for Weka. Includes a wrapper for Weka regression schemes that automates the process of creating lagged variables and date-derived periodic variables and provides the ability to do closed-loop forecasting. New evaluation routines are provided by a special evaluation module and graphing of predictions/forecasts are provided via the JFreeChart library. Includes both command-line and GUI user interfaces. Sample time series data can be found in ${WEKA_HOME}/packages/timeseriesForecasting/sample-data.

Group: nz.ac.waikato.cms.weka Artifact: timeseriesForecasting

Download timeseriesForecasting.jar (1.0.25)
 

5 downloads
Artifact timeseriesForecasting
Group nz.ac.waikato.cms.weka
Version 1.0.25


multiLayerPerceptrons from group nz.ac.waikato.cms.weka (version 1.0.10)

This package currently contains classes for training multilayer perceptrons with one hidden layer, where the number of hidden units is user specified. MLPClassifier can be used for classification problems and MLPRegressor is the corresponding class for numeric prediction tasks. The former has as many output units as there are classes, the latter only one output unit. Both minimise a penalised squared error with a quadratic penalty on the (non-bias) weights, i.e., they implement "weight decay", where this penalised error is averaged over all training instances. The size of the penalty can be determined by the user by modifying the "ridge" parameter to control overfitting. The sum of squared weights is multiplied by this parameter before added to the squared error. Both classes use BFGS optimisation by default to find parameters that correspond to a local minimum of the error function. but optionally conjugated gradient descent is available, which can be faster for problems with many parameters. Logistic functions are used as the activation functions for all units apart from the output unit in MLPRegressor, which employs the identity function. Input attributes are standardised to zero mean and unit variance. MLPRegressor also rescales the target attribute (i.e., "class") using standardisation. All network parameters are initialised with small normally distributed random values.

Group: nz.ac.waikato.cms.weka Artifact: multiLayerPerceptrons

Download multiLayerPerceptrons.jar (1.0.10)
 

5 downloads
Artifact multiLayerPerceptrons
Group nz.ac.waikato.cms.weka
Version 1.0.10


simpleEducationalLearningSchemes from group nz.ac.waikato.cms.weka (version 1.0.2)

Simple learning schemes for educational purposes (Prism, Id3, IB1 and NaiveBayesSimple).

Group: nz.ac.waikato.cms.weka Artifact: simpleEducationalLearningSchemes
Show documentation Show source 
Download simpleEducationalLearningSchemes.jar (1.0.2)
 

5 downloads


Rserve from group org.nuiton.thirdparty (version 1.8-5)

Group: org.nuiton.thirdparty Artifact: Rserve

Download Rserve.jar (1.8-5)
 

4 downloads
Artifact Rserve
Group org.nuiton.thirdparty
Version 1.8-5


distributedWekaHadoop from group nz.ac.waikato.cms.weka (version 1.0.4)

This package provides loaders and savers for HDFS, plus Hadoop jobs and tasks that wrap the tasks provided in distributedWekaBase. Includes libraries for Hadoop 1.1.2.

Group: nz.ac.waikato.cms.weka Artifact: distributedWekaHadoop

Download distributedWekaHadoop.jar (1.0.4)
 

4 downloads




Page 5 from 19 (items total 277)


© 2015 - 2025 Weber Informatics LLC | Privacy Policy