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

edu.stanford.nlp.parser.shiftreduce.CombinationFeatureFactory Maven / Gradle / Ivy

Go to download

Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.

There is a newer version: 3.9.2
Show newest version
package edu.stanford.nlp.parser.shiftreduce;

import java.util.List;

/**
 * Combines multiple feature factories into one feature factory
 *
 * @author John Bauer
 */
public class CombinationFeatureFactory extends FeatureFactory {
  FeatureFactory[] factories;

  public CombinationFeatureFactory(FeatureFactory[] factories) {
    this.factories = factories;
  }

  @Override
  public List featurize(State state, List features) {
    for (FeatureFactory factory : factories) {
      factory.featurize(state, features);
    }
    return features;
  }

  private static final long serialVersionUID = 1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy