m

metaCost

This metaclassifier makes its base classifier cost-sensitive using the method specified in Pedro Domingos: MetaCost: A general method for making classifiers cost-sensitive. In: Fifth International Conference on Knowledge Discovery and Data Mining, 155-164, 1999. This classifier should produce similar results to one created by passing the base learner to Bagging, which is in turn passed to a CostSensitiveClassifier operating on minimum expected cost. The difference is that MetaCost produces a single cost-sensitive classifier of the base learner, giving the benefits of fast classification and interpretable output (if the base learner itself is interpretable). This implementation uses all bagging iterations when reclassifying training data (the MetaCost paper reports a marginal improvement when only those iterations containing each training instance are used in reclassifying that instance).
http://weka.sourceforge.net/doc.packages/metaCost
GNU General Public License 3
University of Waikato, Hamilton, NZ
Len Trigg
Files download
File Operation
metaCost-1.0.3.jar download
metaCost-1.0.3.pom download
metaCost-1.0.3-sources.jar download
Apache Maven
<dependency>
  <groupId>nz.ac.waikato.cms.weka</groupId>
  <artifactId>metaCost</artifactId>
  <version>1.0.3</version>
</dependency>
Gradle Groovy
implementation 'nz.ac.waikato.cms.weka:metaCost:1.0.3'
Gradle Kotlin
implementation("nz.ac.waikato.cms.weka:metaCost:1.0.3")
Scala SBT
libraryDependencies += "nz.ac.waikato.cms.weka" % "metaCost" % "1.0.3"
Groovy Grape
@Grapes(
  @Grab(group='nz.ac.waikato.cms.weka', module='metaCost', version='1.0.3')
)
Apache Ivy
<dependency org="nz.ac.waikato.cms.weka" name="metaCost" rev="1.0.3" />
Leiningen
[nz.ac.waikato.cms.weka/metaCost "1.0.3"]
Apache Buildr
'nz.ac.waikato.cms.weka:metaCost:jar:1.0.3'