Uses of Interface
org.nlpub.watset.graph.NodeWeighting
Packages that use NodeWeighting
-
Uses of NodeWeighting in org.nlpub.watset.graph
Classes in org.nlpub.watset.graph that implement NodeWeightingModifier and TypeClassDescriptionstatic class
A trivial and not particularly useful node weighting approach that assigns the current node label as the weight.static class
The node weighting approach that chooses the label with the highest total edge weight in the neighborhood divided by the neighbor node degree.static class
The node weighting approach that chooses the label with the highest total edge weight in the neighborhood divided by the logarithm of the neighbor node degree.static class
The node weighting approach that chooses the label with the highest total edge weight in the neighborhood.Fields in org.nlpub.watset.graph declared as NodeWeightingModifier and TypeFieldDescriptionprotected final NodeWeighting<V,
E> ChineseWhispers.Implementation.weighting
The node weighting approach.protected final NodeWeighting<V,
E> ChineseWhispers.weighting
The node weighting approach.Methods in org.nlpub.watset.graph that return NodeWeightingModifier and TypeMethodDescriptionstatic <V,
E> NodeWeighting<V, E> NodeWeightings.label()
A static factory method providing a convenient way to create an instance ofNodeWeightings.LabelNodeWeighting
.static <V,
E> NodeWeighting<V, E> NodeWeightings.linear()
A static factory method providing a convenient way to create an instance ofNodeWeightings.LinearNodeWeighting
.static <V,
E> NodeWeighting<V, E> NodeWeightings.log()
A static factory method providing a convenient way to create an instance ofNodeWeightings.LogNodeWeighting
.static <V,
E> NodeWeighting<V, E> Construct a node weighting instance corresponding to the givenmode
.static <V,
E> NodeWeighting<V, E> NodeWeightings.top()
A static factory method providing a convenient way to create an instance ofNodeWeightings.TopNodeWeighting
.Methods in org.nlpub.watset.graph with parameters of type NodeWeightingModifier and TypeMethodDescriptionChineseWhispers.Builder.setWeighting
(NodeWeighting<V, E> weighting) Set the the node weighting approach.Constructors in org.nlpub.watset.graph with parameters of type NodeWeightingModifierConstructorDescriptionChineseWhispers
(org.jgrapht.Graph<V, E> graph, NodeWeighting<V, E> weighting, int iterations, Random random) Create an instance of the Chinese Whispers algorithm.Implementation
(org.jgrapht.Graph<V, E> graph, NodeWeighting<V, E> weighting, int iterations, Random random) Create an instance of the Chinese Whispers clustering algorithm implementation.