data-dumper

Contains meta-filter/-classifier/-cluster to get access to the data that is being used.

Лицензия

Лицензия

Категории

Категории

Данные
Группа

Группа

com.github.fracpete
Идентификатор

Идентификатор

data-dumper-weka-package
Последняя версия

Последняя версия

2019.9.13
Дата

Дата

Тип

Тип

jar
Описание

Описание

data-dumper
Contains meta-filter/-classifier/-cluster to get access to the data that is being used.
Ссылка на сайт

Ссылка на сайт

https://github.com/fracpete/data-dumper-weka-package
Организация-разработчик

Организация-разработчик

University of Waikato, Hamilton, NZ
Система контроля версий

Система контроля версий

https://github.com/fracpete/data-dumper-weka-package

Скачать data-dumper-weka-package

Как подключить последнюю версию

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

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
nz.ac.waikato.cms.weka : weka-dev jar [3.7.12,)

test (2)

Идентификатор библиотеки Тип Версия
nz.ac.waikato.cms.weka : weka-dev test-jar [3.7.12,)
junit : junit jar 3.8.2

Модули Проекта

Данный проект не имеет модулей.

data-dumper-weka-package

Weka package that allows listening in on data as it passes through filter pipelines (aka weka.filters.MultiFilter), classifiers or clusterers.

Available schemes

  • Dumper schemes

    • weka.core.dump.Null -- dummy, does nothing
    • weka.core.dump.InMemory -- not for GUI use, but API use, as it notifies registered listeners whenever the data changes.
    • weka.core.dump.SaveToDisk -- stores the data in the specified file on disk (auto-detects file format based on extension); allows appending a timestamp to output separate files during cross-validation.
  • Integration

    • weka.classifiers.meta.Dumper
    • weka.clusterers.Dumper
    • weka.filters.Dumper

Example usage:

When used in conjunction with the weka.filters.MultiFilter, it is possible to output the data at any given stage in the filter pipeline by inserting weka.filters.Dumper instances where required. Here is an example layout:

- weka.filters.MultiFilter
  |
  + weka.filters.Dumper -dumper "weka.core.dump.SaveToDisk -output-file ./1-initial.arff"
  |
  + weka.filters.unsupervised.attribute.AddNoise"
  |
  + weka.filters.Dumper -dumper "weka.core.dump.SaveToDisk -output-file ./2-with_noise.arff"
  |
  + weka.filters.unsupervised.attribute.Normalize"
  |
  + weka.filters.Dumper -dumper "weka.core.dump.SaveToDisk -output-file ./3-normalized.arff"

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>data-dumper-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>

Версии библиотеки

Версия
2019.9.13