File size: 19,982 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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 | package org.maltparser.ml.lib;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.Set;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.core.feature.FeatureVector;
import org.maltparser.core.feature.function.FeatureFunction;
import org.maltparser.core.feature.value.FeatureValue;
import org.maltparser.core.feature.value.MultipleFeatureValue;
import org.maltparser.core.feature.value.SingleFeatureValue;
import org.maltparser.core.syntaxgraph.DependencyStructure;
import org.maltparser.ml.LearningMethod;
import org.maltparser.ml.lib.FeatureMap;
import org.maltparser.ml.lib.FeatureList;
import org.maltparser.ml.lib.MaltLibModel;
import org.maltparser.ml.lib.MaltFeatureNode;
import org.maltparser.ml.lib.LibException;
import org.maltparser.parser.DependencyParserConfig;
import org.maltparser.parser.guide.instance.InstanceModel;
import org.maltparser.parser.history.action.SingleDecision;
public abstract class Lib implements LearningMethod {
public enum Verbostity {
SILENT, ERROR, ALL
}
protected final Verbostity verbosity;
private final InstanceModel owner;
private final int learnerMode;
private final String name;
protected final FeatureMap featureMap;
private final boolean excludeNullValues;
private BufferedWriter instanceOutput = null;
protected MaltLibModel model = null;
private int numberOfInstances;
/**
* Constructs a Lib learner.
*
* @param owner the guide model owner
* @param learnerMode the mode of the learner BATCH or CLASSIFY
*/
public Lib(InstanceModel owner, Integer learnerMode, String learningMethodName) throws MaltChainedException {
this.owner = owner;
this.learnerMode = learnerMode.intValue();
this.name = learningMethodName;
if (getConfiguration().getOptionValue("lib", "verbosity") != null) {
this.verbosity = Verbostity.valueOf(getConfiguration().getOptionValue("lib", "verbosity").toString().toUpperCase());
} else {
this.verbosity = Verbostity.SILENT;
}
setNumberOfInstances(0);
if (getConfiguration().getOptionValue("singlemalt", "null_value") != null && getConfiguration().getOptionValue("singlemalt", "null_value").toString().equalsIgnoreCase("none")) {
excludeNullValues = true;
} else {
excludeNullValues = false;
}
if (learnerMode == BATCH) {
featureMap = new FeatureMap();
instanceOutput = new BufferedWriter(getInstanceOutputStreamWriter(".ins"));
} else if (learnerMode == CLASSIFY) {
featureMap = (FeatureMap)getConfigFileEntryObject(".map");
} else {
featureMap = null;
}
}
public void addInstance(SingleDecision decision, FeatureVector featureVector) throws MaltChainedException {
if (featureVector == null) {
throw new LibException("The feature vector cannot be found");
} else if (decision == null) {
throw new LibException("The decision cannot be found");
}
try {
final StringBuilder sb = new StringBuilder();
sb.append(decision.getDecisionCode()+"\t");
final int n = featureVector.size();
for (int i = 0; i < n; i++) {
FeatureValue featureValue = featureVector.getFeatureValue(i);
if (featureValue == null || (excludeNullValues == true && featureValue.isNullValue())) {
sb.append("-1");
} else {
if (!featureValue.isMultiple()) {
SingleFeatureValue singleFeatureValue = (SingleFeatureValue)featureValue;
if (singleFeatureValue.getValue() == 1) {
sb.append(singleFeatureValue.getIndexCode());
} else if (singleFeatureValue.getValue() == 0) {
sb.append("-1");
} else {
sb.append(singleFeatureValue.getIndexCode());
sb.append(":");
sb.append(singleFeatureValue.getValue());
}
} else { //if (featureValue instanceof MultipleFeatureValue) {
Set<Integer> values = ((MultipleFeatureValue)featureValue).getCodes();
int j=0;
for (Integer value : values) {
sb.append(value.toString());
if (j != values.size()-1) {
sb.append("|");
}
j++;
}
}
// else {
// throw new LibException("Don't recognize the type of feature value: "+featureValue.getClass());
// }
}
sb.append('\t');
}
sb.append('\n');
instanceOutput.write(sb.toString());
instanceOutput.flush();
increaseNumberOfInstances();
// sb.setLength(0);
} catch (IOException e) {
throw new LibException("The learner cannot write to the instance file. ", e);
}
}
public void finalizeSentence(DependencyStructure dependencyGraph) throws MaltChainedException { }
public void moveAllInstances(LearningMethod method,
FeatureFunction divideFeature,
ArrayList<Integer> divideFeatureIndexVector)
throws MaltChainedException {
if (method == null) {
throw new LibException("The learning method cannot be found. ");
} else if (divideFeature == null) {
throw new LibException("The divide feature cannot be found. ");
}
try {
final BufferedReader in = new BufferedReader(getInstanceInputStreamReader(".ins"));
final BufferedWriter out = method.getInstanceWriter();
final StringBuilder sb = new StringBuilder(6);
int l = in.read();
char c;
int j = 0;
while(true) {
if (l == -1) {
sb.setLength(0);
break;
}
c = (char)l;
l = in.read();
if (c == '\t') {
if (divideFeatureIndexVector.contains(j-1)) {
out.write(Integer.toString(((SingleFeatureValue)divideFeature.getFeatureValue()).getIndexCode()));
out.write('\t');
}
out.write(sb.toString());
j++;
out.write('\t');
sb.setLength(0);
} else if (c == '\n') {
out.write(sb.toString());
if (divideFeatureIndexVector.contains(j-1)) {
out.write('\t');
out.write(Integer.toString(((SingleFeatureValue)divideFeature.getFeatureValue()).getIndexCode()));
}
out.write('\n');
sb.setLength(0);
method.increaseNumberOfInstances();
this.decreaseNumberOfInstances();
j = 0;
} else {
sb.append(c);
}
}
in.close();
getFile(".ins").delete();
out.flush();
} catch (SecurityException e) {
throw new LibException("The learner cannot remove the instance file. ", e);
} catch (NullPointerException e) {
throw new LibException("The instance file cannot be found. ", e);
} catch (FileNotFoundException e) {
throw new LibException("The instance file cannot be found. ", e);
} catch (IOException e) {
throw new LibException("The learner read from the instance file. ", e);
}
}
public void noMoreInstances() throws MaltChainedException {
closeInstanceWriter();
}
public boolean predict(FeatureVector featureVector, SingleDecision decision) throws MaltChainedException {
final FeatureList featureList = new FeatureList();
final int size = featureVector.size();
for (int i = 1; i <= size; i++) {
final FeatureValue featureValue = featureVector.getFeatureValue(i-1);
if (featureValue != null && !(excludeNullValues == true && featureValue.isNullValue())) {
if (!featureValue.isMultiple()) {
SingleFeatureValue singleFeatureValue = (SingleFeatureValue)featureValue;
final int index = featureMap.getIndex(i, singleFeatureValue.getIndexCode());
if (index != -1 && singleFeatureValue.getValue() != 0) {
featureList.add(index,singleFeatureValue.getValue());
}
}
else {
for (Integer value : ((MultipleFeatureValue)featureValue).getCodes()) {
final int v = featureMap.getIndex(i, value);
if (v != -1) {
featureList.add(v,1);
}
}
}
}
}
try {
decision.getKBestList().addList(model.predict(featureList.toArray()));
} catch (OutOfMemoryError e) {
throw new LibException("Out of memory. Please increase the Java heap size (-Xmx<size>). ", e);
}
return true;
}
// protected abstract int[] prediction(FeatureList featureList) throws MaltChainedException;
public void train() throws MaltChainedException {
if (owner == null) {
throw new LibException("The parent guide model cannot be found. ");
}
String pathExternalTrain = null;
if (!getConfiguration().getOptionValue("lib", "external").toString().equals("")) {
String path = getConfiguration().getOptionValue("lib", "external").toString();
try {
if (!new File(path).exists()) {
throw new LibException("The path to the external trainer 'svm-train' is wrong.");
}
if (new File(path).isDirectory()) {
throw new LibException("The option --lib-external points to a directory, the path should point at the 'train' file or the 'train.exe' file in the libsvm or the liblinear package");
}
if (!(path.endsWith("train") ||path.endsWith("train.exe"))) {
throw new LibException("The option --lib-external does not specify the path to 'train' file or the 'train.exe' file in the libsvm or the liblinear package. ");
}
pathExternalTrain = path;
} catch (SecurityException e) {
throw new LibException("Access denied to the file specified by the option --lib-external. ", e);
}
}
LinkedHashMap<String, String> libOptions = getDefaultLibOptions();
parseParameters(getConfiguration().getOptionValue("lib", "options").toString(), libOptions, getAllowedLibOptionFlags());
// long startTime = System.currentTimeMillis();
// if (configLogger.isInfoEnabled()) {
// configLogger.info("\nStart training\n");
// }
if (pathExternalTrain != null) {
trainExternal(pathExternalTrain, libOptions);
} else {
trainInternal(libOptions);
}
// long elapsed = System.currentTimeMillis() - startTime;
// if (configLogger.isInfoEnabled()) {
// configLogger.info("Time 1: " +new Formatter().format("%02d:%02d:%02d", elapsed/3600000, elapsed%3600000/60000, elapsed%60000/1000)+" ("+elapsed+" ms)\n");
// }
try {
// if (configLogger.isInfoEnabled()) {
// configLogger.info("\nSaving feature map "+getFile(".map").getName()+"\n");
// }
saveFeatureMap(new BufferedOutputStream(new FileOutputStream(getFile(".map").getAbsolutePath())), featureMap);
} catch (FileNotFoundException e) {
throw new LibException("The learner cannot save the feature map file '"+getFile(".map").getAbsolutePath()+"'. ", e);
}
// elapsed = System.currentTimeMillis() - startTime;
// if (configLogger.isInfoEnabled()) {
// configLogger.info("Time 2: " +new Formatter().format("%02d:%02d:%02d", elapsed/3600000, elapsed%3600000/60000, elapsed%60000/1000)+" ("+elapsed+" ms)\n");
// }
}
protected abstract void trainExternal(String pathExternalTrain, LinkedHashMap<String, String> libOptions) throws MaltChainedException;
protected abstract void trainInternal(LinkedHashMap<String, String> libOptions) throws MaltChainedException;
public void terminate() throws MaltChainedException {
closeInstanceWriter();
// owner = null;
// model = null;
}
public BufferedWriter getInstanceWriter() {
return instanceOutput;
}
protected void closeInstanceWriter() throws MaltChainedException {
try {
if (instanceOutput != null) {
instanceOutput.flush();
instanceOutput.close();
instanceOutput = null;
}
} catch (IOException e) {
throw new LibException("The learner cannot close the instance file. ", e);
}
}
public InstanceModel getOwner() {
return owner;
}
public int getLearnerMode() {
return learnerMode;
}
public String getLearningMethodName() {
return name;
}
/**
* Returns the current configuration
*
* @return the current configuration
* @throws MaltChainedException
*/
public DependencyParserConfig getConfiguration() throws MaltChainedException {
return owner.getGuide().getConfiguration();
}
public int getNumberOfInstances() throws MaltChainedException {
if(numberOfInstances!=0)
return numberOfInstances;
else{
BufferedReader reader = new BufferedReader( getInstanceInputStreamReader(".ins"));
try {
while(reader.readLine()!=null){
numberOfInstances++;
owner.increaseFrequency();
}
reader.close();
} catch (IOException e) {
throw new MaltChainedException("No instances found in file",e);
}
return numberOfInstances;
}
}
public void increaseNumberOfInstances() {
numberOfInstances++;
owner.increaseFrequency();
}
public void decreaseNumberOfInstances() {
numberOfInstances--;
owner.decreaseFrequency();
}
protected void setNumberOfInstances(int numberOfInstances) {
this.numberOfInstances = 0;
}
protected OutputStreamWriter getInstanceOutputStreamWriter(String suffix) throws MaltChainedException {
return getConfiguration().getAppendOutputStreamWriter(owner.getModelName()+getLearningMethodName()+suffix);
}
protected InputStreamReader getInstanceInputStreamReader(String suffix) throws MaltChainedException {
return getConfiguration().getInputStreamReader(owner.getModelName()+getLearningMethodName()+suffix);
}
protected InputStream getInputStreamFromConfigFileEntry(String suffix) throws MaltChainedException {
return getConfiguration().getInputStreamFromConfigFileEntry(owner.getModelName()+getLearningMethodName()+suffix);
}
protected File getFile(String suffix) throws MaltChainedException {
return getConfiguration().getFile(owner.getModelName()+getLearningMethodName()+suffix);
}
protected Object getConfigFileEntryObject(String suffix) throws MaltChainedException {
return getConfiguration().getConfigFileEntryObject(owner.getModelName()+getLearningMethodName()+suffix);
}
public String[] getLibParamStringArray(LinkedHashMap<String, String> libOptions) {
final ArrayList<String> params = new ArrayList<String>();
for (String key : libOptions.keySet()) {
params.add("-"+key); params.add(libOptions.get(key));
}
return params.toArray(new String[params.size()]);
}
public abstract LinkedHashMap<String, String> getDefaultLibOptions();
public abstract String getAllowedLibOptionFlags();
public void parseParameters(String paramstring, LinkedHashMap<String, String> libOptions, String allowedLibOptionFlags) throws MaltChainedException {
if (paramstring == null) {
return;
}
final String[] argv;
try {
argv = paramstring.split("[_\\p{Blank}]");
} catch (PatternSyntaxException e) {
throw new LibException("Could not split the parameter string '"+paramstring+"'. ", e);
}
for (int i=0; i < argv.length-1; i++) {
if(argv[i].charAt(0) != '-') {
throw new LibException("The argument flag should start with the following character '-', not with "+argv[i].charAt(0));
}
if(++i>=argv.length) {
throw new LibException("The last argument does not have any value. ");
}
try {
int index = allowedLibOptionFlags.indexOf(argv[i-1].charAt(1));
if (index != -1) {
libOptions.put(Character.toString(argv[i-1].charAt(1)), argv[i]);
} else {
throw new LibException("Unknown learner parameter: '"+argv[i-1]+"' with value '"+argv[i]+"'. ");
}
} catch (ArrayIndexOutOfBoundsException e) {
throw new LibException("The learner parameter '"+argv[i-1]+"' could not convert the string value '"+argv[i]+"' into a correct numeric value. ", e);
} catch (NumberFormatException e) {
throw new LibException("The learner parameter '"+argv[i-1]+"' could not convert the string value '"+argv[i]+"' into a correct numeric value. ", e);
} catch (NullPointerException e) {
throw new LibException("The learner parameter '"+argv[i-1]+"' could not convert the string value '"+argv[i]+"' into a correct numeric value. ", e);
}
}
}
protected void finalize() throws Throwable {
try {
closeInstanceWriter();
} finally {
super.finalize();
}
}
public String toString() {
final StringBuffer sb = new StringBuffer();
sb.append('\n');
sb.append(getLearningMethodName());
sb.append(" INTERFACE\n");
try {
sb.append(getConfiguration().getOptionValue("lib", "options").toString());
} catch (MaltChainedException e) {}
return sb.toString();
}
protected int binariesInstance(String line, FeatureList featureList) throws MaltChainedException {
final Pattern tabPattern = Pattern.compile("\t");
final Pattern pipePattern = Pattern.compile("\\|");
int y = -1;
featureList.clear();
try {
String[] columns = tabPattern.split(line);
if (columns.length == 0) {
return -1;
}
try {
y = Integer.parseInt(columns[0]);
} catch (NumberFormatException e) {
throw new LibException("The instance file contain a non-integer value '"+columns[0]+"'", e);
}
for(int j = 1; j < columns.length; j++) {
final String[] items = pipePattern.split(columns[j]);
for (int k = 0; k < items.length; k++) {
try {
int colon = items[k].indexOf(':');
if (colon == -1) {
if (Integer.parseInt(items[k]) != -1) {
int v = featureMap.addIndex(j, Integer.parseInt(items[k]));
if (v != -1) {
featureList.add(v,1);
}
}
} else {
int index = featureMap.addIndex(j, Integer.parseInt(items[k].substring(0,colon)));
double value;
if (items[k].substring(colon+1).indexOf('.') != -1) {
value = Double.parseDouble(items[k].substring(colon+1));
} else {
value = Integer.parseInt(items[k].substring(colon+1));
}
featureList.add(index,value);
}
} catch (NumberFormatException e) {
throw new LibException("The instance file contain a non-numeric value '"+items[k]+"'", e);
}
}
}
} catch (ArrayIndexOutOfBoundsException e) {
throw new LibException("Couln't read from the instance file. ", e);
}
return y;
}
protected void binariesInstances2SVMFileFormat(InputStreamReader isr, OutputStreamWriter osw) throws MaltChainedException {
try {
final BufferedReader in = new BufferedReader(isr);
final BufferedWriter out = new BufferedWriter(osw);
final FeatureList featureSet = new FeatureList();
while(true) {
String line = in.readLine();
if(line == null) break;
int y = binariesInstance(line, featureSet);
if (y == -1) {
continue;
}
out.write(Integer.toString(y));
for (int k=0; k < featureSet.size(); k++) {
MaltFeatureNode x = featureSet.get(k);
out.write(' ');
out.write(Integer.toString(x.getIndex()));
out.write(':');
out.write(Double.toString(x.getValue()));
}
out.write('\n');
}
in.close();
out.close();
} catch (NumberFormatException e) {
throw new LibException("The instance file contain a non-numeric value", e);
} catch (IOException e) {
throw new LibException("Couldn't read from the instance file, when converting the Malt instances into LIBSVM/LIBLINEAR format. ", e);
}
}
protected void saveFeatureMap(OutputStream os, FeatureMap map) throws MaltChainedException {
try {
ObjectOutputStream output = new ObjectOutputStream(os);
try{
output.writeObject(map);
}
finally{
output.close();
}
} catch (IOException e) {
throw new LibException("Save feature map error", e);
}
}
protected FeatureMap loadFeatureMap(InputStream is) throws MaltChainedException {
FeatureMap map = new FeatureMap();
try {
ObjectInputStream input = new ObjectInputStream(is);
try {
map = (FeatureMap)input.readObject();
} finally {
input.close();
}
} catch (ClassNotFoundException e) {
throw new LibException("Load feature map error", e);
} catch (IOException e) {
throw new LibException("Load feature map error", e);
}
return map;
}
}
|