edu.illinois.cs.cogcomp.lbj.coref.alignment
Class WordOverlapChunkAligner

java.lang.Object
  extended by edu.illinois.cs.cogcomp.lbj.coref.alignment.Aligner<T>
      extended by edu.illinois.cs.cogcomp.lbj.coref.alignment.DefaultAligner<Chunk>
          extended by edu.illinois.cs.cogcomp.lbj.coref.alignment.WordOverlapChunkAligner
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ExtentToHeadAligner

public class WordOverlapChunkAligner
extends DefaultAligner<Chunk>
implements java.io.Serializable

Aligns objects based on head word overlap.

See Also:
Serialized Form

Field Summary
private static long serialVersionUID
           
 
Constructor Summary
WordOverlapChunkAligner()
           
 
Method Summary
 int getOverlap(Chunk a, Chunk b)
          Determines the number of words shared in the heads of the mentions.
 
Methods inherited from class edu.illinois.cs.cogcomp.lbj.coref.alignment.DefaultAligner
getAlignment, getBestMatch
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

WordOverlapChunkAligner

public WordOverlapChunkAligner()
Method Detail

getOverlap

public int getOverlap(Chunk a,
                      Chunk b)
Determines the number of words shared in the heads of the mentions.

Specified by:
getOverlap in class DefaultAligner<Chunk>