File size: 10,380 Bytes
6f3ebfa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | package org.maltparser.parser.guide.instance;
import java.io.BufferedWriter;
import java.io.IOException;
import java.util.SortedMap;
import java.util.TreeMap;
import java.util.TreeSet;
import java.util.regex.Pattern;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.core.feature.FeatureModel;
import org.maltparser.core.feature.FeatureVector;
import org.maltparser.core.feature.value.SingleFeatureValue;
import org.maltparser.core.syntaxgraph.DependencyStructure;
import org.maltparser.parser.guide.ClassifierGuide;
import org.maltparser.parser.guide.GuideException;
import org.maltparser.parser.guide.Model;
import org.maltparser.parser.history.action.SingleDecision;
/**
The feature divide model is used for divide the training instances into several models according to
a divide feature. Usually this strategy decrease the training and classification time, but can also decrease
the accuracy of the parser.
@author Johan Hall
*/
public class FeatureDivideModel implements InstanceModel {
private final Model parent;
private final SortedMap<Integer,AtomicModel> divideModels;
// private FeatureVector masterFeatureVector;
private int frequency = 0;
private final int divideThreshold;
private AtomicModel masterModel;
/**
* Constructs a feature divide model.
*
* @param parent the parent guide model.
* @throws MaltChainedException
*/
public FeatureDivideModel(Model parent) throws MaltChainedException {
this.parent = parent;
setFrequency(0);
// this.masterFeatureVector = featureVector;
String data_split_threshold = getGuide().getConfiguration().getOptionValue("guide", "data_split_threshold").toString().trim();
if (data_split_threshold != null) {
try {
divideThreshold = Integer.parseInt(data_split_threshold);
} catch (NumberFormatException e) {
throw new GuideException("The --guide-data_split_threshold option is not an integer value. ", e);
}
} else {
divideThreshold = 0;
}
divideModels = new TreeMap<Integer,AtomicModel>();
if (getGuide().getGuideMode() == ClassifierGuide.GuideMode.BATCH) {
masterModel = new AtomicModel(-1, this);
} else if (getGuide().getGuideMode() == ClassifierGuide.GuideMode.CLASSIFY) {
load();
}
}
public void addInstance(FeatureVector featureVector, SingleDecision decision) throws MaltChainedException {
// featureVector.getFeatureModel().getDivideFeatureFunction().update();
SingleFeatureValue featureValue = (SingleFeatureValue)featureVector.getFeatureModel().getDivideFeatureFunction().getFeatureValue();
if (!divideModels.containsKey(featureValue.getIndexCode())) {
divideModels.put(featureValue.getIndexCode(), new AtomicModel(featureValue.getIndexCode(), this));
}
FeatureVector divideFeatureVector = featureVector.getFeatureModel().getFeatureVector("/" + featureVector.getSpecSubModel().getSubModelName());
divideModels.get(featureValue.getIndexCode()).addInstance(divideFeatureVector, decision);
}
public void noMoreInstances(FeatureModel featureModel) throws MaltChainedException {
for (Integer index : divideModels.keySet()) {
divideModels.get(index).noMoreInstances(featureModel);
}
final TreeSet<Integer> removeSet = new TreeSet<Integer>();
for (Integer index : divideModels.keySet()) {
if (divideModels.get(index).getFrequency() <= divideThreshold) {
divideModels.get(index).moveAllInstances(masterModel, featureModel.getDivideFeatureFunction(), featureModel.getDivideFeatureIndexVector());
removeSet.add(index);
}
}
for (Integer index : removeSet) {
divideModels.remove(index);
}
masterModel.noMoreInstances(featureModel);
}
public void finalizeSentence(DependencyStructure dependencyGraph) throws MaltChainedException {
if (divideModels != null) {
for (AtomicModel divideModel : divideModels.values()) {
divideModel.finalizeSentence(dependencyGraph);
}
} else {
throw new GuideException("The feature divide models cannot be found. ");
}
}
public boolean predict(FeatureVector featureVector, SingleDecision decision) throws MaltChainedException {
AtomicModel model = getAtomicModel((SingleFeatureValue)featureVector.getFeatureModel().getDivideFeatureFunction().getFeatureValue());
if (model == null) {
if (getGuide().getConfiguration().isLoggerInfoEnabled()) {
getGuide().getConfiguration().logInfoMessage("Could not predict the next parser decision because there is " +
"no divide or master model that covers the divide value '"+((SingleFeatureValue)featureVector.getFeatureModel().getDivideFeatureFunction().getFeatureValue()).getIndexCode()+"', as default" +
" class code '1' is used. ");
}
decision.addDecision(1); // default prediction
return true;
}
return model.predict(getModelFeatureVector(model, featureVector), decision);
}
public FeatureVector predictExtract(FeatureVector featureVector, SingleDecision decision) throws MaltChainedException {
AtomicModel model = getAtomicModel((SingleFeatureValue)featureVector.getFeatureModel().getDivideFeatureFunction().getFeatureValue());
if (model == null) {
return null;
}
return model.predictExtract(getModelFeatureVector(model, featureVector), decision);
}
public FeatureVector extract(FeatureVector featureVector) throws MaltChainedException {
AtomicModel model = getAtomicModel((SingleFeatureValue)featureVector.getFeatureModel().getDivideFeatureFunction().getFeatureValue());
if (model == null) {
return featureVector;
}
return model.extract(getModelFeatureVector(model, featureVector));
}
private FeatureVector getModelFeatureVector(AtomicModel model, FeatureVector featureVector) {
if (model.getIndex() == -1) {
return featureVector;
} else {
return featureVector.getFeatureModel().getFeatureVector("/" + featureVector.getSpecSubModel().getSubModelName());
}
}
private AtomicModel getAtomicModel(SingleFeatureValue featureValue) throws MaltChainedException {
//((SingleFeatureValue)masterFeatureVector.getFeatureModel().getDivideFeatureFunction().getFeatureValue()).getIndexCode()
if (divideModels != null && divideModels.containsKey(featureValue.getIndexCode())) {
return divideModels.get(featureValue.getIndexCode());
} else if (masterModel != null && masterModel.getFrequency() > 0) {
return masterModel;
}
return null;
}
public void terminate() throws MaltChainedException {
if (divideModels != null) {
for (AtomicModel divideModel : divideModels.values()) {
divideModel.terminate();
}
}
if (masterModel != null) {
masterModel.terminate();
}
}
public void train() throws MaltChainedException {
for (AtomicModel divideModel : divideModels.values()) {
divideModel.train();
}
masterModel.train();
save();
for (AtomicModel divideModel : divideModels.values()) {
divideModel.terminate();
}
masterModel.terminate();
}
/**
* Saves the feature divide model settings .dsm file.
*
* @throws MaltChainedException
*/
protected void save() throws MaltChainedException {
try {
final BufferedWriter out = new BufferedWriter(getGuide().getConfiguration().getOutputStreamWriter(getModelName()+".dsm"));
out.write(masterModel.getIndex() + "\t" + masterModel.getFrequency() + "\n");
if (divideModels != null) {
for (AtomicModel divideModel : divideModels.values()) {
out.write(divideModel.getIndex() + "\t" + divideModel.getFrequency() + "\n");
}
}
out.close();
} catch (IOException e) {
throw new GuideException("Could not write to the guide model settings file '"+getModelName()+".dsm"+"', when " +
"saving the guide model settings to file. ", e);
}
}
protected void load() throws MaltChainedException {
String dsmString = getGuide().getConfiguration().getConfigFileEntryString(getModelName()+".dsm");
String[] lines = dsmString.split("\n");
Pattern tabPattern = Pattern.compile("\t");
// FeatureVector divideFeatureVector = featureVector.getFeatureModel().getFeatureVector("/" + featureVector.getSpecSubModel().getSubModelName());
for (int i = 0; i < lines.length; i++) {
String[] cols = tabPattern.split(lines[i]);
if (cols.length != 2) {
throw new GuideException("");
}
int code = -1;
int freq = 0;
try {
code = Integer.parseInt(cols[0]);
freq = Integer.parseInt(cols[1]);
} catch (NumberFormatException e) {
throw new GuideException("Could not convert a string value into an integer value when loading the feature divide model settings (.dsm). ", e);
}
if (code == -1) {
masterModel = new AtomicModel(-1, this);
masterModel.setFrequency(freq);
} else if (divideModels != null) {
divideModels.put(code, new AtomicModel(code, this));
divideModels.get(code).setFrequency(freq);
}
setFrequency(getFrequency()+freq);
}
}
/**
* Returns the parent model
*
* @return the parent model
*/
public Model getParent() {
return parent;
}
public ClassifierGuide getGuide() {
return parent.getGuide();
}
public String getModelName() throws MaltChainedException {
try {
return parent.getModelName();
} catch (NullPointerException e) {
throw new GuideException("The parent guide model cannot be found. ", e);
}
}
/**
* Returns the frequency (number of instances)
*
* @return the frequency (number of instances)
*/
public int getFrequency() {
return frequency;
}
/**
* Increase the frequency by 1
*/
public void increaseFrequency() {
if (parent instanceof InstanceModel) {
((InstanceModel)parent).increaseFrequency();
}
frequency++;
}
public void decreaseFrequency() {
if (parent instanceof InstanceModel) {
((InstanceModel)parent).decreaseFrequency();
}
frequency--;
}
/**
* Sets the frequency (number of instances)
*
* @param frequency (number of instances)
*/
protected void setFrequency(int frequency) {
this.frequency = frequency;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
public String toString() {
final StringBuilder sb = new StringBuilder();
//TODO
return sb.toString();
}
}
|