Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package opennlp.tools.parser;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import opennlp.tools.chunker.ChunkerContextGenerator;
import opennlp.tools.dictionary.Dictionary;
import opennlp.tools.ml.model.Event;
import opennlp.tools.parser.chunking.Parser;
import opennlp.tools.postag.DefaultPOSContextGenerator;
import opennlp.tools.postag.POSContextGenerator;
import opennlp.tools.util.ObjectStream;
/**
* Abstract class extended by parser event streams which perform tagging and chunking.
*/
public abstract class AbstractParserEventStream extends opennlp.tools.util.AbstractEventStream {
private ChunkerContextGenerator chunkerContextGenerator;
private POSContextGenerator tagContextGenerator;
protected final HeadRules rules;
protected final Set punctSet;
/**
* The type of events being generated by this event stream.
*/
protected final ParserEventTypeEnum etype;
protected boolean fixPossesives;
protected final Dictionary dict;
public AbstractParserEventStream(ObjectStream d,
HeadRules rules, ParserEventTypeEnum etype, Dictionary dict) {
super(d);
this.dict = dict;
if (etype == ParserEventTypeEnum.CHUNK) {
this.chunkerContextGenerator = new ChunkContextGenerator();
}
else if (etype == ParserEventTypeEnum.TAG) {
this.tagContextGenerator = new DefaultPOSContextGenerator(null);
}
this.rules = rules;
punctSet = rules.getPunctuationTags();
this.etype = etype;
init();
}
@Override
protected Iterator createEvents(Parse sample) {
List newEvents = new ArrayList<>();
Parse.pruneParse(sample);
if (fixPossesives) {
Parse.fixPossesives(sample);
}
sample.updateHeads(rules);
Parse[] chunks = getInitialChunks(sample);
if (etype == ParserEventTypeEnum.TAG) {
addTagEvents(newEvents, chunks);
}
else if (etype == ParserEventTypeEnum.CHUNK) {
addChunkEvents(newEvents, chunks);
}
else {
addParseEvents(newEvents, Parser.collapsePunctuation(chunks,punctSet));
}
return newEvents.iterator();
}
protected void init() {
fixPossesives = false;
}
public AbstractParserEventStream(ObjectStream d, HeadRules rules, ParserEventTypeEnum etype) {
this(d,rules,etype,null);
}
public static Parse[] getInitialChunks(Parse p) {
List chunks = new ArrayList<>();
getInitialChunks(p, chunks);
return chunks.toArray(new Parse[0]);
}
private static void getInitialChunks(Parse p, List ichunks) {
if (p.isPosTag()) {
ichunks.add(p);
}
else {
Parse[] kids = p.getChildren();
boolean allKidsAreTags = true;
for (Parse kid : kids) {
if (!kid.isPosTag()) {
allKidsAreTags = false;
break;
}
}
if (allKidsAreTags) {
ichunks.add(p);
}
else {
for (Parse kid : kids) {
getInitialChunks(kid, ichunks);
}
}
}
}
/**
* Produces all events for the specified sentence {@code chunks}
* and adds them to the specified {@code newEvents} list.
*
* @param newEvents A list of {@link Event events} to be added to.
* @param chunks Pre-chunked {@link Parse constituents} of a sentence.
*/
protected abstract void addParseEvents(List newEvents, Parse[] chunks);
private void addChunkEvents(List chunkEvents, Parse[] chunks) {
List toks = new ArrayList<>();
List tags = new ArrayList<>();
List preds = new ArrayList<>();
for (Parse c : chunks) {
if (c.isPosTag()) {
toks.add(c.getCoveredText());
tags.add(c.getType());
preds.add(Parser.OTHER);
} else {
boolean start = true;
String ctype = c.getType();
Parse[] kids = c.getChildren();
for (Parse tok : kids) {
toks.add(tok.getCoveredText());
tags.add(tok.getType());
if (start) {
preds.add(Parser.START + ctype);
start = false;
} else {
preds.add(Parser.CONT + ctype);
}
}
}
}
for (int ti = 0, tl = toks.size(); ti < tl; ti++) {
chunkEvents.add(new Event(preds.get(ti),
chunkerContextGenerator.getContext(ti, toks.toArray(new String[0]),
tags.toArray(new String[0]), preds.toArray(new String[0]))));
}
}
private void addTagEvents(List tagEvents, Parse[] chunks) {
List toks = new ArrayList<>();
List preds = new ArrayList<>();
for (Parse c : chunks) {
if (c.isPosTag()) {
toks.add(c.getCoveredText());
preds.add(c.getType());
} else {
Parse[] kids = c.getChildren();
for (Parse tok : kids) {
toks.add(tok.getCoveredText());
preds.add(tok.getType());
}
}
}
for (int ti = 0, tl = toks.size(); ti < tl; ti++) {
tagEvents.add(new Event(preds.get(ti), tagContextGenerator.getContext(ti,
toks.toArray(new String[0]), preds.toArray(new String[0]), null)));
}
}
/**
* Returns {@code true} if the {@link Parse child} is the last child of the specified
* {@link Parse parent}.
*
* @param child The child {@link Parse}.
* @param parent The parent {@link Parse}.
* @return {@code true} if the specified child is the last child of the specified parent,
* {@code false} otherwise.
*/
protected boolean lastChild(Parse child, Parse parent) {
Parse[] kids = AbstractBottomUpParser.collapsePunctuation(parent.getChildren(),punctSet);
return kids[kids.length - 1] == child;
}
}