0.0.55 • Published 4 years ago

ts-weka-node v0.0.55

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

ts-weka-node

WORK IN PROGRESS

Uses Weka v3.9.3.

Setup

  1. Download the Weka 3.9.3 JAR from https://mvnrepository.com/artifact/nz.ac.waikato.cms.weka/weka-dev/3.9.3 and place the Weka JAR file in your src folder, e.g. under ./src/bin/weka-3.9.3.jar
  2. If you want to use certain classes for attribute selection, download the attributeSelectionSearchMethods JAR from https://sourceforge.net/projects/weka/files/weka-packages/attributeSelectionSearchMethods1.0.7.zip. If you already downloaded the package using the WEKA Package Manager, you can find the file in <Home>\packages\attributeSelectionSearchMethods. Place the attributeSelectionSearchMethods JAR file in your src folder, e.g. under ./src/bin/attributeSelectionSearchMethods-1.0.7.jar.
  3. If you want to use EvolutionarySearch for attribute selection, download the JAR from https://github.com/sebastian-luna-valero/EvolutionarySearch/releases/download/1.0.2/EvolutionarySearch.zip and place it in your src folder, e.g. under ./src/bin/EvolutionarySearch-1.0.2.jar
  4. To use this plugin, create a new WekaLibraryService instance:

    import * as path from 'path';
    import {WekaLibraryService} from 'ts-weka-node/lib/services/weka-library.service';
    ...
    
    private binPath: string = path.join(__dirname, '../src/bin/');
    
    private wekaLibraryService: WekaLibraryService = new WekaLibraryService('./input', './output', this.binPath);

    The path for the attributeSelectionSearchMethods JAR is optional.

    The WekaLibraryService distinguishes between balanced and unbalanced datasets. It expects unbalanced and balanced datasets (as .arff) in the input folder:

    • ./input/datasets/balanced/...
    • ./input/datasets/unbalanced/...

      Additionally, if feature selection is performed, the initial files are placed in the following directory:

    • ./input/datasets/initial/...

      Whenever a file name is required as a parameter, it can be provided with or without the suffix .arff

0.0.55

4 years ago

0.0.54

4 years ago

0.0.52

4 years ago

0.0.53

4 years ago

0.0.51

4 years ago

0.0.50

4 years ago

0.0.48

4 years ago

0.0.49

4 years ago

0.0.47

4 years ago

0.0.46

4 years ago

0.0.44

4 years ago

0.0.45

4 years ago

0.0.43

4 years ago

0.0.42

4 years ago

0.0.41

4 years ago

0.0.40

4 years ago

0.0.37

4 years ago

0.0.38

4 years ago

0.0.39

4 years ago

0.0.36

4 years ago

0.0.35

4 years ago

0.0.34

4 years ago

0.0.33

4 years ago

0.0.32

4 years ago

0.0.30

4 years ago

0.0.31

4 years ago

0.0.29

4 years ago

0.0.28

4 years ago

0.0.27

4 years ago

0.0.26

4 years ago

0.0.25

4 years ago

0.0.24

4 years ago

0.0.23

4 years ago

0.0.22

4 years ago

0.0.21

4 years ago

0.0.20

4 years ago

0.0.19

4 years ago

0.0.16

4 years ago

0.0.17

4 years ago

0.0.18

4 years ago

0.0.15

4 years ago

0.0.14

4 years ago

0.0.13

4 years ago

0.0.12

4 years ago

0.0.10

4 years ago

0.0.11

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago