org.cleartk.timeml.tlink.TemporalLinkMainEventToNextSentenceMainEventAnnotator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleartk-timeml Show documentation
Show all versions of cleartk-timeml Show documentation
ClearTK annotators for temporal information extraction
/*
* Copyright (c) 2011, Regents of the University of Colorado
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the University of Colorado at Boulder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package org.cleartk.timeml.tlink;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.apache.uima.UimaContext;
import org.apache.uima.analysis_engine.AnalysisEngineDescription;
import org.apache.uima.jcas.JCas;
import org.apache.uima.resource.ResourceInitializationException;
import org.cleartk.classifier.feature.extractor.simple.SimpleFeatureExtractor;
import org.cleartk.classifier.feature.extractor.simple.TypePathExtractor;
import org.cleartk.classifier.liblinear.LIBLINEARStringOutcomeDataWriter;
import org.cleartk.syntax.constituent.type.TreebankNode;
import org.cleartk.syntax.constituent.type.TreebankNodeUtil;
import org.cleartk.timeml.type.Event;
import org.cleartk.timeml.util.CleartkInternalModelFactory;
import org.cleartk.token.type.Sentence;
import org.uimafit.factory.AnalysisEngineFactory;
import org.uimafit.util.JCasUtil;
import com.google.common.collect.Lists;
/**
*
* Copyright (c) 2011, Regents of the University of Colorado
* All rights reserved.
*
* @author Steven Bethard
*/
public class TemporalLinkMainEventToNextSentenceMainEventAnnotator extends
TemporalLinkAnnotator_ImplBase {
public static final CleartkInternalModelFactory FACTORY = new CleartkInternalModelFactory() {
@Override
public Class> getAnnotatorClass() {
return TemporalLinkMainEventToNextSentenceMainEventAnnotator.class;
}
@Override
public Class> getDataWriterClass() {
return LIBLINEARStringOutcomeDataWriter.class;
}
@Override
public AnalysisEngineDescription getBaseDescription() throws ResourceInitializationException {
return AnalysisEngineFactory.createPrimitiveDescription(TemporalLinkMainEventToNextSentenceMainEventAnnotator.class);
}
};
public TemporalLinkMainEventToNextSentenceMainEventAnnotator() {
super(Event.class, Event.class, "BEFORE", "OVERLAP", "AFTER");
}
@Override
public void initialize(UimaContext context) throws ResourceInitializationException {
super.initialize(context);
List extractors = Arrays. asList(
new TypePathExtractor(Event.class, "tense"),
new TypePathExtractor(Event.class, "aspect"),
new TypePathExtractor(Event.class, "eventClass"));
this.setSourceExtractors(extractors);
this.setTargetExtractors(extractors);
}
@Override
protected List getSourceTargetPairs(JCas jCas) {
List pairs = Lists.newArrayList();
Iterator sentences = JCasUtil.select(jCas, Sentence.class).iterator();
Sentence prev = sentences.hasNext() ? sentences.next() : null;
while (sentences.hasNext()) {
Sentence curr = sentences.next();
Event source = getMainEvent(jCas, prev);
Event target = getMainEvent(jCas, curr);
if (source != null && target != null) {
pairs.add(new SourceTargetPair(source, target));
}
prev = curr;
}
return pairs;
}
private Event getMainEvent(JCas jCas, Sentence sentence) {
// group events by their depth, and record the minimum depth
Integer minDepth = null;
Map> depthEvents = new HashMap>();
for (Event event : JCasUtil.selectCovered(jCas, Event.class, sentence)) {
TreebankNode node = TreebankNodeUtil.selectMatchingLeaf(jCas, event);
Integer depth = node == null ? null : TreebankNodeUtil.getDepth(node);
if (!depthEvents.containsKey(depth)) {
depthEvents.put(depth, new ArrayList());
}
depthEvents.get(depth).add(event);
if (depth != null && (minDepth == null || depth < minDepth)) {
minDepth = depth;
}
}
// select the last event
if (depthEvents.isEmpty()) {
return null;
} else {
List events = depthEvents.get(minDepth);
return events.get(events.size() - 1);
}
}
}