All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gate.plugin.learningframework.data.InstanceRepresentation Maven / Gradle / Ivy

Go to download

A GATE plugin that provides many different machine learning algorithms for a wide range of NLP-related machine learning tasks like text classification, tagging, or chunking.

There is a newer version: 4.2
Show newest version
/*
 * Copyright (c) 2015-2016 The University Of Sheffield.
 *
 * This file is part of gateplugin-LearningFramework 
 * (see https://github.com/GateNLP/gateplugin-LearningFramework).
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 2.1 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this software. If not, see .
 */
package gate.plugin.learningframework.data;

/**
 * Common interface to our own representations of learning instances.
 * 
 * Learning instances represent features and optional target information.
 * Features map from a feature name (a String) to a feature value (an Object).
 * Specific InstanceRepresentations can limit the type of the value to e.g.
 * just floats.
 * The target information also maps a target property name (a String) to a 
 * target property value (an Object). Again, specific implementations can
 * limit the available target property names and/or the type of their values.
 * 
 * @author Johann Petrak 
 */
public interface InstanceRepresentation {
  
  public static final String TARGET_VALUE = "╔TARGETVALUE╗";
  public static final String TARGET_COSTS = "╔TARGETCOSTS╗";
  public static final String INSTANCE_WEIGHT = "╔INSTANCEWEIGHT╗";
  public static final String HASMISSINGVALUE_FLAG = "╔HASMISSINGVALUE╗";
  
  public InstanceRepresentation setFeature(String name, Object value);
  public Object getFeature(String name);
  public boolean hasFeature(String name);
  public int numFeatures();
  public InstanceRepresentation setTargetValue(Object value);
  public boolean hasTarget();
  public InstanceRepresentation setTargetCosts(Object value);
  public Object getTargetValue();
  public InstanceRepresentation setInstanceWeight(double weight);
  public double getInstanceWeight();
  public InstanceRepresentation setHasMissing(boolean flag);  
  public boolean hasMissing();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy