dataset-weights

Contains filters for modifying attribute/instance weights.

License

License

Categories

Categories

Data
GroupId

GroupId

com.github.fracpete
ArtifactId

ArtifactId

dataset-weights-weka-package
Last Version

Last Version

2019.9.13
Release Date

Release Date

Type

Type

jar
Description

Description

dataset-weights
Contains filters for modifying attribute/instance weights.
Project URL

Project URL

https://github.com/fracpete/dataset-weights-weka-package
Project Organization

Project Organization

University of Waikato, Hamilton, NZ
Source Code Management

Source Code Management

https://github.com/fracpete/dataset-weights-weka-package

Download dataset-weights-weka-package

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.fracpete/dataset-weights-weka-package/ -->
<dependency>
    <groupId>com.github.fracpete</groupId>
    <artifactId>dataset-weights-weka-package</artifactId>
    <version>2019.9.13</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.fracpete/dataset-weights-weka-package/
implementation 'com.github.fracpete:dataset-weights-weka-package:2019.9.13'
// https://jarcasting.com/artifacts/com.github.fracpete/dataset-weights-weka-package/
implementation ("com.github.fracpete:dataset-weights-weka-package:2019.9.13")
'com.github.fracpete:dataset-weights-weka-package:jar:2019.9.13'
<dependency org="com.github.fracpete" name="dataset-weights-weka-package" rev="2019.9.13">
  <artifact name="dataset-weights-weka-package" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.fracpete', module='dataset-weights-weka-package', version='2019.9.13')
)
libraryDependencies += "com.github.fracpete" % "dataset-weights-weka-package" % "2019.9.13"
[com.github.fracpete/dataset-weights-weka-package "2019.9.13"]

Dependencies

compile (1)

Group / Artifact Type Version
nz.ac.waikato.cms.weka : weka-dev jar [3.7.12,)

test (2)

Group / Artifact Type Version
nz.ac.waikato.cms.weka : weka-dev test-jar [3.7.12,)
junit : junit jar 3.8.2

Project Modules

There are no modules declared in this project.

dataset-weights-weka-package

Weka package offering filters that allow modification of attribute/instance weights.

The following filters are available:

  • weka.filters.unsupervised.attribute.ModifyAttributeWeights
  • weka.filters.unsupervised.instance.ModifyInstanceWeights

Available modifiers for attribute weights:

  • FixedValue - applies the user-specified weight to selected range of attributes
  • FixedValueByName - applies the user-specified weight to attributes that match the specified regular expression (matching can be inverted)
  • FromFile - uses the weights stored in a file
  • PassThrough - dummy, does nothing

Available modifiers for instance weights:

  • FixedValue - applies the user-specified weight to selected range of rows
  • FixedValueByRegExp - applies the user-specified weight to the rows which values of a specified attribute match the regular expression (matching can be inverted)
  • FromAttribute - uses the values from a numeric attribute as weights
  • FromFile - uses the weights stored in a file
  • PassThrough - dummy, does nothing

Releases

How to use packages

For more information on how to install the package, see:

https://waikato.github.io/weka-wiki/packages/manager/

Maven

Use the following dependency in your pom.xml:

    <dependency>
      <groupId>com.github.fracpete</groupId>
      <artifactId>dataset-weights-weka-package</artifactId>
      <version>2019.9.13</version>
      <type>jar</type>
      <exclusions>
        <exclusion>
          <groupId>nz.ac.waikato.cms.weka</groupId>
          <artifactId>weka-dev</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

Versions

Version
2019.9.13
2019.9.11
2015.6.16