Package org.nlpub.watset.graph
Class Watset<V,E>
java.lang.Object
org.nlpub.watset.graph.Watset<V,E>
- Type Parameters:
V
- the type of nodes in the graphE
- the type of edges in the graph
- All Implemented Interfaces:
org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
public class Watset<V,E>
extends Object
implements org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
Watset is a local-global meta-algorithm for fuzzy graph clustering.
Watset builds an intermediate undirected graph by inducing different senses of each node in the input graph.
This implementation of Watset is known as Simplified Watset. It does not need a context similarity measure.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Builder forWatset
.static class
Actual implementation of Simplified Watset. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected WatsetClustering<V>
The cached clustering result.protected final ClusteringAlgorithmBuilder<Sense<V>,
org.jgrapht.graph.DefaultWeightedEdge, ?> The global clustering algorithm supplier.The graph.protected final SenseInduction<V,
E> The node sense induction approach. -
Constructor Summary
ConstructorsConstructorDescriptionWatset
(org.jgrapht.Graph<V, E> graph, ClusteringAlgorithmBuilder<V, E, ?> local, ClusteringAlgorithmBuilder<Sense<V>, org.jgrapht.graph.DefaultWeightedEdge, ?> global) Create an instance of the Watset clustering algorithm. -
Method Summary
-
Field Details
-
graph
The graph. -
inducer
The node sense induction approach. -
global
The global clustering algorithm supplier. -
clustering
The cached clustering result.
-
-
Constructor Details
-
Watset
public Watset(org.jgrapht.Graph<V, E> graph, ClusteringAlgorithmBuilder<V, E, ?> local, ClusteringAlgorithmBuilder<Sense<V>, org.jgrapht.graph.DefaultWeightedEdge, ?> global) Create an instance of the Watset clustering algorithm.- Parameters:
graph
- the graphlocal
- the local clustering algorithm supplierglobal
- the global clustering algorithm supplier
-
-
Method Details
-
builder
Create a builder.- Type Parameters:
V
- the type of nodes in the graphE
- the type of edges in the graph- Returns:
- a builder
-
getClustering
- Specified by:
getClustering
in interfaceorg.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
-