Package org.nlpub.watset.graph
Interface WatsetClustering<V>
- Type Parameters:
V
- the type of nodes in the graph
- All Known Implementing Classes:
WatsetClustering.WatsetClusteringImpl
public interface WatsetClustering<V>
extends org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
A Watset clustering.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
A Watset clustering that computes disambiguated contexts on demand. -
Method Summary
Modifier and TypeMethodDescriptionGet the disambiguated contexts built duringWatset.getClustering()
.Get the intermediate node sense graph built duringWatset.getClustering()
.Methods inherited from interface org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering
getClusters, getNumberClusters
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
getSenseGraph
Get the intermediate node sense graph built duringWatset.getClustering()
.- Returns:
- the sense graph
-
getContexts
Get the disambiguated contexts built duringWatset.getClustering()
.- Returns:
- the disambiguated contexts
-