Uses of Class
edu.mit.jmwe.data.MWEPOS

Packages that use MWEPOS
edu.mit.jmwe.data Provides the basic data structures used by the library and their default implementations. 
edu.mit.jmwe.detect.score Provides various scoring mechanisms that can be used by subclasses of the FilterByScore and ResolveByScore detectors. 
edu.mit.jmwe.harness Provides testing harness infrastructure 
edu.mit.jmwe.harness.result Provides objects that encapsulate the results of a test harness run 
edu.mit.jmwe.index Provides the MWE index interfaces and default implementations, which allow one to look up an MWE given one of its parts. 
edu.mit.jmwe.util Provides utility classes used by many classes across the library 
 

Uses of MWEPOS in edu.mit.jmwe.data
 

Methods in edu.mit.jmwe.data that return MWEPOS
static MWEPOS MWEPOS.fromChar(char identifier)
          This convenience method allows retrieval of the MWEPOS object given the part of speech character.
 MWEPOS RootMWEDesc.getPOS()
           
 MWEPOS MWEDescID.getPOS()
           
 MWEPOS InfMWEDesc.getPOS()
           
 MWEPOS IHasMWEPOS.getPOS()
          Returns the part of speech of this object.
static MWEPOS MWEPOS.toMWEPOS(String tag)
          This convenience method allows retrieval of the MWEPOS object given the part of speech tag as a String.
static MWEPOS MWEPOS.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MWEPOS[] MWEPOS.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Constructors in edu.mit.jmwe.data with parameters of type MWEPOS
MWEDescID(String rootForm, MWEPOS pos)
          Constructs this description ID from the MWE's root (non inflected) form and part of speech.
RootMWEDesc(List<String> parts, MWEPOS pos)
          Constructs a new MWE description object from the specified list of parts and part of speech, that has no inflected forms
RootMWEDesc(List<String> parts, MWEPOS pos, Collection<? extends InfMWEDesc.InfMWEDescBuilder> inflectedForms, int... counts)
          Constructs a new MWE description object from the specified list of parts, inflected forms, part of speech, and counts relating to the MWE's appearance in the reference concordance.
RootMWEDesc(String surfaceForm, MWEPOS pos)
          Constructs a new MWE description object from the specified surface form and part of speech, that has no inflected forms
RootMWEDesc(String surfaceForm, MWEPOS pos, Collection<? extends InfMWEDesc.InfMWEDescBuilder> inflectedForms, int... counts)
          Constructs a new MWE description object from the specified surface form, inflected forms, part of speech, and counts relating to the MWE's appearance in the reference concordance.
 

Uses of MWEPOS in edu.mit.jmwe.detect.score
 

Methods in edu.mit.jmwe.detect.score with parameters of type MWEPOS
protected  List<String> LeskScore.getGlosses(String lemma, MWEPOS pos)
          Returns a list of the glosses of a word or MWE by looking up its lemma and part of speech in the dictionary.
 

Uses of MWEPOS in edu.mit.jmwe.harness
 

Methods in edu.mit.jmwe.harness that return MWEPOS
protected  MWEPOS ConcordanceAnswerKey.disambiguatePOS(List<edu.mit.jsemcor.element.IWordform> mwe)
          Attempts to disambiguate the part of speech of a multi-expression that does not have a semantic tag and whose parts are labeled with different part of speech tags.
protected  MWEPOS ConcordanceAnswerKey.getMWEPOS(String lexSense)
          Given the lexical sense of a word form, extracts the one digit decimal integer representing the synset type of the sense and returns the corresponding part of speech.
 

Uses of MWEPOS in edu.mit.jmwe.harness.result
 

Fields in edu.mit.jmwe.harness.result with type parameters of type MWEPOS
 Map<MWEPOS,AtomicInteger> MWEResultBuilder.answerData
           
 Map<MWEPOS,AtomicInteger> MWEResultBuilder.correctData
           
 Map<MWEPOS,AtomicInteger> MWEResultBuilder.foundData
           
 Map<MWEPOS,AtomicDouble<T,S>> MWEResultBuilder.partialScores
           
 

Methods in edu.mit.jmwe.harness.result that return types with arguments of type MWEPOS
 Map<MWEPOS,Integer> MWEResult.getAnswerData()
           
 Map<MWEPOS,Integer> IOverallResult.getAnswerData()
          Returns a map that stores the number of answer multi-word expressions for each part of speech.
 Map<MWEPOS,Integer> MWEResult.getCorrectData()
           
 Map<MWEPOS,Integer> IOverallResult.getCorrectData()
          Returns a map that stores the number of multi-word expressions correctly found by the detector for each part of speech.
 Map<MWEPOS,Double> MWEResult.getF1Scores()
           
 Map<MWEPOS,Double> IOverallResult.getF1Scores()
          Returns a map that stores the f1 measures of the detector for each part of speech.
 Map<MWEPOS,Integer> MWEResult.getFoundData()
           
 Map<MWEPOS,Integer> IOverallResult.getFoundData()
          Returns a map that stores the number of multi-word expressions found by the detector for each part of speech.
 Map<MWEPOS,Double> MWEResult.getPartialF1Scores()
           
 Map<MWEPOS,Double> IOverallResult.getPartialF1Scores()
          Returns a map that stores the f1 measure of the detector for each part of speech after adding the partial credit to its correct score.
 Map<MWEPOS,Double> MWEResult.getPartialPrecisionScores()
           
 Map<MWEPOS,Double> IOverallResult.getPartialPrecisionScores()
          Returns a map that stores the precision of the detector for each part of speech after adding the partial credit to its correct score.
 Map<MWEPOS,Double> MWEResult.getPartialRecallScores()
           
 Map<MWEPOS,Double> IOverallResult.getPartialRecallScores()
          Returns a map that stores the recall of the detector for each part of speech after adding the partial credit to its correct score.
 Map<MWEPOS,Double> MWEResult.getPartialScores()
           
 Map<MWEPOS,Double> IOverallResult.getPartialScores()
          Returns a map that stores the partial credit for the partially correct multi-word expressions found by the detector for each part of speech.
 Map<MWEPOS,Double> MWEResult.getPrecisionScores()
           
 Map<MWEPOS,Double> IOverallResult.getPrecisionScores()
          Returns a map that stores the precision of the detector for each part of speech.
 Map<MWEPOS,Double> MWEResult.getRecallScores()
           
 Map<MWEPOS,Double> IOverallResult.getRecallScores()
          Returns a map that stores the recall of the detector for each part of speech.
protected  Map<MWEPOS,AtomicDouble<T,S>> MWEResultBuilder.initDoubleMap()
          Provides a new, empty map for double values.
protected  Map<MWEPOS,AtomicInteger> MWEResultBuilder.initIntegerMap()
          Provides a new map for integer values.
protected  Map<MWEPOS,Double> MWEResultBuilder.toDblMap(Map<MWEPOS,AtomicDouble<T,S>> map)
          Converts a map of AtomicDoubles to a map of Doubles.
protected  Map<MWEPOS,Integer> MWEResultBuilder.toIntMap(Map<MWEPOS,AtomicInteger> map)
          Converts a map of AtomicIntegers to a map of Integers.
 

Methods in edu.mit.jmwe.harness.result with parameters of type MWEPOS
protected  double MWEResult.calcPartialPrecision(MWEPOS pos)
          Calculates the precision over the specified part of speech, taking into account partial credit for the specified MWE part of speech.
protected  double MWEResult.calcPartialRecall(MWEPOS pos)
          Calculates the recall over the specified part of speech, taking into account partial credit for the specified MWE part of speech.
protected  double MWEResult.calcPrecision(MWEPOS pos)
          Calculates the precision over the specified parts of speech, or all parts of speech if the specified part of speech is null
protected  double MWEResult.calcRecall(MWEPOS pos)
          Calculates the recall over the specified parts of speech, or all parts of speech if the specified part of speech is null
 

Method parameters in edu.mit.jmwe.harness.result with type arguments of type MWEPOS
protected  Map<MWEPOS,Double> MWEResultBuilder.toDblMap(Map<MWEPOS,AtomicDouble<T,S>> map)
          Converts a map of AtomicDoubles to a map of Doubles.
protected  Map<MWEPOS,Integer> MWEResultBuilder.toIntMap(Map<MWEPOS,AtomicInteger> map)
          Converts a map of AtomicIntegers to a map of Integers.
 

Constructor parameters in edu.mit.jmwe.harness.result with type arguments of type MWEPOS
MWEResult(Map<MWEPOS,Integer> answer, Map<MWEPOS,Integer> found, Map<MWEPOS,Integer> correct, Map<MWEPOS,Double> partial, Map<String,ISentenceResult<T,S>> detailed)
          Constructs the result from the answer, found and correct data, and the precision, recall and partial credit scores.
MWEResult(Map<MWEPOS,Integer> answer, Map<MWEPOS,Integer> found, Map<MWEPOS,Integer> correct, Map<MWEPOS,Double> partial, Map<String,ISentenceResult<T,S>> detailed)
          Constructs the result from the answer, found and correct data, and the precision, recall and partial credit scores.
MWEResult(Map<MWEPOS,Integer> answer, Map<MWEPOS,Integer> found, Map<MWEPOS,Integer> correct, Map<MWEPOS,Double> partial, Map<String,ISentenceResult<T,S>> detailed)
          Constructs the result from the answer, found and correct data, and the precision, recall and partial credit scores.
MWEResult(Map<MWEPOS,Integer> answer, Map<MWEPOS,Integer> found, Map<MWEPOS,Integer> correct, Map<MWEPOS,Double> partial, Map<String,ISentenceResult<T,S>> detailed)
          Constructs the result from the answer, found and correct data, and the precision, recall and partial credit scores.
 

Uses of MWEPOS in edu.mit.jmwe.index
 

Methods in edu.mit.jmwe.index that return MWEPOS
static MWEPOS IndexBuilder.toMWEPOS(edu.mit.jsemcor.element.ISemanticTag tag)
          Translates the JSemcor ISemanticTag to a jMWE MWEPOS object.
 

Methods in edu.mit.jmwe.index with parameters of type MWEPOS
 IInfMWEDesc InMemoryMWEIndex.getInflectedMWEDesc(String lemma, MWEPOS pos, String inflected)
           
 IInfMWEDesc IMWEIndex.getInflectedMWEDesc(String lemma, MWEPOS pos, String inflected)
          Returns the inflected MWE description for the specified root lemma, part of speech, and inflected form, or null if this index does not contain said description.
 IRootMWEDesc InMemoryMWEIndex.getRootMWEDesc(String lemma, MWEPOS pos)
           
 IRootMWEDesc IMWEIndex.getRootMWEDesc(String lemma, MWEPOS pos)
          Returns the root MWE description for the specified lemma and part of speech, or null if this index does not contain said description.
 

Constructors in edu.mit.jmwe.index with parameters of type MWEPOS
IndexBuilder.MutableRootMWEDesc(String surfaceForm, MWEPOS pos)
          Constructs the mutable root description that has no inflected forms with the given surface form and pos, initialized with zero for all 5 counts
 

Uses of MWEPOS in edu.mit.jmwe.util
 

Methods in edu.mit.jmwe.util that return MWEPOS
static MWEPOS JWIPOS.toMWEPOS(edu.mit.jwi.item.POS pos)
          Translates a JWI POS object into a jMWE MWEPOS object.
 

Methods in edu.mit.jmwe.util with parameters of type MWEPOS
static edu.mit.jwi.item.POS JWIPOS.toPOS(MWEPOS pos)
          Translates a jMWE MWEPOS object into a JWI POS object.
 



Copyright © 2011 Massachusetts Institute of Technology. All Rights Reserved.