package com.antbrains.crf; import java.util.ArrayList; public class FeatureWeightScore { public ArrayList<String> features = new ArrayList<String>(); public ArrayList<Double> weights = new ArrayList<Double>(); public double score; }