Example usage for weka.core DenseInstance subclass-usage

List of usage examples for weka.core DenseInstance subclass-usage

Introduction

In this page you can find the example usage for weka.core DenseInstance subclass-usage.

Usage

From source file data.Bag.java

/**
 * 
 * Class inheriting from DenseInstance to represent a MIML bag.
 * 
 * @author Ana I. Reyes Melero
 * @author Eva Gibaja

From source file moa.gui.visualization.DataPoint.java

public class DataPoint extends DenseInstance {

    private static final long serialVersionUID = 1L;

    protected int timestamp;
    private HashMap<String, String> measure_values;

From source file moa.streams.generators.DriftingExemplarInstance.java

/**
 * DriftingExemplarInstance.java
 *
 * Class for generating instances. This serves as the 'centroid' or exemplar instance, extending the SparseInstace. When
 * step() is called, the instance 'moves' through the feature space at some velocity, emulating concept drift.
 *