File size: 441 Bytes
6f3ebfa | 1 2 3 4 5 6 7 8 9 10 11 | package org.maltparser.parser.guide;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.core.syntaxgraph.DependencyStructure;
import org.maltparser.parser.ParserConfiguration;
import org.maltparser.parser.history.action.GuideUserAction;
public interface OracleGuide extends Guide {
public GuideUserAction predict(DependencyStructure gold, ParserConfiguration config) throws MaltChainedException;
}
|