Uses of Class
cic.wsd.windowing.Condition

Packages that use Condition
cic.wsd.disambiguation Classes for creating disambiguation algorithms. 
cic.wsd.testing Classes for testing Word Sense Disambiguation algorithms over SEMCOR test files. 
cic.wsd.windowing Classes for window selection conditions. 
 

Uses of Condition in cic.wsd.disambiguation
 

Method parameters in cic.wsd.disambiguation with type arguments of type Condition
 java.util.ArrayList<Decision> WSDAlgorithm.solve(Input document, java.util.ArrayList<Condition> conditions, int windowSize, WSDAlgorithm backoff, WSDAlgorithm tie)
          Tells the disambiguation algorithm to solve an input document.
 

Uses of Condition in cic.wsd.testing
 

Fields in cic.wsd.testing with type parameters of type Condition
(package private)  java.util.ArrayList<Condition> Test.conditions
          Conditions for retrieving the window.
 

Methods in cic.wsd.testing that return types with arguments of type Condition
 java.util.ArrayList<Condition> Test.getConditions()
          Returns the conditions for selecting the window words.
private static java.util.ArrayList<Condition> TestSet.getConditions(org.w3c.dom.NodeList nconditions)
          Retrieves the conditions from the XML configuration file.
 

Constructor parameters in cic.wsd.testing with type arguments of type Condition
Test(java.util.ArrayList<Input> docs, WSDAlgorithm algorithm, int windowSize, WSDAlgorithm backoff, java.lang.String testSet, WSDAlgorithm tie, java.util.ArrayList<Condition> conditions, java.lang.String retrievedSenses, java.lang.String KNSources)
          Creates a new test.
 

Uses of Condition in cic.wsd.windowing
 

Subclasses of Condition in cic.wsd.windowing
 class IDFThreshold
          Only words with an IDF value >=I will be selected.
 class IsUseful
          Only words that allow the disambiguation algorithm to return an answers will be selected.
 class NoDuplicates
          This will generate a window without duplicates.
 class NoTarget
          This will generate a window without the target word in it.
 class VascilescuLexicalChain
          Extracted from the paper " Evaluating Variants of the Lesk Approach for Disambiguating Words".