File size: 2,670 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 | package org.maltparser.parser;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.core.syntaxgraph.LabelSet;
import org.maltparser.parser.guide.OracleGuide;
import org.maltparser.parser.history.GuideUserHistory;
import org.maltparser.parser.history.action.GuideUserAction;
import org.maltparser.parser.history.container.ActionContainer;
/**
* @author Johan Hall
*
*/
public abstract class Oracle implements OracleGuide {
private final DependencyParserConfig manager;
private final GuideUserHistory history;
private String name;
protected final ActionContainer[] actionContainers;
protected ActionContainer transActionContainer;
protected final ActionContainer[] arcLabelActionContainers;
public Oracle(DependencyParserConfig manager, GuideUserHistory history) throws MaltChainedException {
this.manager = manager;
this.history = history;
this.actionContainers = history.getActionContainerArray();
if (actionContainers.length < 1) {
throw new ParsingException("Problem when initialize the history (sequence of actions). There are no action containers. ");
}
int nLabels = 0;
for (int i = 0; i < actionContainers.length; i++) {
if (actionContainers[i].getTableContainerName().startsWith("A.")) {
nLabels++;
}
}
int j = 0;
this.arcLabelActionContainers = new ActionContainer[nLabels];
for (int i = 0; i < actionContainers.length; i++) {
if (actionContainers[i].getTableContainerName().equals("T.TRANS")) {
transActionContainer = actionContainers[i];
} else if (actionContainers[i].getTableContainerName().startsWith("A.")) {
arcLabelActionContainers[j++] = actionContainers[i];
}
}
}
public GuideUserHistory getHistory() {
return history;
}
public DependencyParserConfig getConfiguration() {
return manager;
}
public String getGuideName() {
return name;
}
public void setGuideName(String guideName) {
this.name = guideName;
}
protected GuideUserAction updateActionContainers(int transition, LabelSet arcLabels) throws MaltChainedException {
transActionContainer.setAction(transition);
if (arcLabels == null) {
for (int i = 0; i < arcLabelActionContainers.length; i++) {
arcLabelActionContainers[i].setAction(-1);
}
} else {
for (int i = 0; i < arcLabelActionContainers.length; i++) {
arcLabelActionContainers[i].setAction(arcLabels.get(arcLabelActionContainers[i].getTable()).shortValue());
}
}
GuideUserAction oracleAction = history.getEmptyGuideUserAction();
oracleAction.addAction(actionContainers);
return oracleAction;
}
}
|