本文整理匯總了Java中com.google.common.collect.ImmutableMultimap.inverse方法的典型用法代碼示例。如果您正苦於以下問題:Java ImmutableMultimap.inverse方法的具體用法?Java ImmutableMultimap.inverse怎麽用?Java ImmutableMultimap.inverse使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.common.collect.ImmutableMultimap
的用法示例。
在下文中一共展示了ImmutableMultimap.inverse方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: align
import com.google.common.collect.ImmutableMultimap; //導入方法依賴的package包/類
/**
* Converts a {@link ResponseLinking} to an {@link EventArgumentLinking} using a {@link
* CorefAnnotation} from an {@link com.bbn.kbp.events2014.AnswerKey} to canonicalize the
* responses. If the canonicalization is inconsistent with the response linking, an {@link
* java.lang.IllegalArgumentException} will be thrown.
*/
public EventArgumentLinking align(ResponseLinking responseLinking,
AnswerKey answerKey) {
checkArgument(answerKey.docId() == responseLinking.docID());
// assertLinkingSubsetOfAnswerKey(responseLinking, answerKey);
// the above assertion was too strong - the system response linking could
// validly include responses which were not included in the answerKey because
// there was a higher scoring system response in the same equivalence class
final ImmutableMultimap<TypeRoleFillerRealis, Response> canonicalToResponses =
Multimaps.index(responseLinking.allResponses(),
TypeRoleFillerRealis.extractFromSystemResponse(
answerKey.corefAnnotation().strictCASNormalizerFunction()));
final Multimap<Response, TypeRoleFillerRealis> responsesToCanonical =
canonicalToResponses.inverse();
final ImmutableSet.Builder<TypeRoleFillerRealisSet> coreffedArgs = ImmutableSet.builder();
for (final ResponseSet responseSet : responseLinking.responseSets()) {
coreffedArgs.add(TypeRoleFillerRealisSet.from(
canonicalizeResponseSet(responseSet.asSet(),
canonicalToResponses, responsesToCanonical)));
}
final ImmutableSet<TypeRoleFillerRealis> incompleteResponses = canonicalizeResponseSet(
responseLinking.incompleteResponses(), canonicalToResponses, responsesToCanonical);
return EventArgumentLinking.builder().docID(responseLinking.docID())
.eventFrames(coreffedArgs.build()).incomplete(incompleteResponses).build();
}