Package org.nlpub.watset.graph
Class ChineseWhispers<V,E>
java.lang.Object
org.nlpub.watset.graph.ChineseWhispers<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 ChineseWhispers<V,E>
extends Object
implements org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
Implementation of the Chinese Whispers algorithm.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Builder forChineseWhispers
.protected static class
Actual implementation of Chinese Whispers. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
The cached clustering result.The graph.protected final int
The number of iterations.protected final Random
The random number generator.protected final NodeWeighting<V,
E> The node weighting approach. -
Constructor Summary
ConstructorsConstructorDescriptionChineseWhispers
(org.jgrapht.Graph<V, E> graph, NodeWeighting<V, E> weighting, int iterations, Random random) Create an instance of the Chinese Whispers algorithm. -
Method Summary
Modifier and TypeMethodDescriptionstatic <V,
E> ChineseWhispers.Builder<V, E> builder()
Create a builder.org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
-
Field Details
-
graph
The graph. -
weighting
The node weighting approach. -
iterations
protected final int iterationsThe number of iterations. -
random
The random number generator. -
clustering
The cached clustering result.
-
-
Constructor Details
-
ChineseWhispers
public ChineseWhispers(org.jgrapht.Graph<V, E> graph, NodeWeighting<V, E> weighting, int iterations, Random random) Create an instance of the Chinese Whispers algorithm.- Parameters:
graph
- the graphweighting
- the node weighting approachiterations
- the number of iterationsrandom
- the random number generator
-
-
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>
-