Uses of Interface
org.nlpub.watset.graph.ClusteringAlgorithmBuilder
-
Packages that use ClusteringAlgorithmBuilder Package Description org.nlpub.watset.eval Clustering and performance evaluation tools.org.nlpub.watset.graph Graph processing and clustering.org.nlpub.watset.util Utility classes and helpers. -
-
Uses of ClusteringAlgorithmBuilder in org.nlpub.watset.eval
Constructors in org.nlpub.watset.eval with parameters of type ClusteringAlgorithmBuilder Constructor Description Measurer(ClusteringAlgorithmBuilder<V,E,?> provider, org.jgrapht.Graph<V,E> graph)Create an instance ofMeasurer.Measurer(ClusteringAlgorithmBuilder<V,E,?> provider, org.jgrapht.Graph<V,E> graph, int repetitions, int warmup)Create an instance ofMeasurer. -
Uses of ClusteringAlgorithmBuilder in org.nlpub.watset.graph
Classes in org.nlpub.watset.graph that implement ClusteringAlgorithmBuilder Modifier and Type Class Description static classChineseWhispers.Builder<V,E>Builder forChineseWhispers.static classComponentsClustering.Builder<V,E>Builder forComponentsClustering.static classEmptyClustering.Builder<V,E>Builder forEmptyClustering.static classMarkovClustering.Builder<V,E>Builder forMarkovClustering.static classMarkovClusteringExternal.Builder<V,E>Builder forMarkovClusteringExternal.static classMaxMax.Builder<V,E>Builder forMaxMax.static classSimplifiedWatset.Builder<V,E>Builder forSimplifiedWatset.static classSingletonClustering.Builder<V,E>Builder forSingletonClustering.static classTogetherClustering.Builder<V,E>Builder forTogetherClustering.static classWatset.Builder<V,E>Deprecated.Builder forWatset.Fields in org.nlpub.watset.graph declared as ClusteringAlgorithmBuilder Modifier and Type Field Description protected ClusteringAlgorithmBuilder<Sense<V>,org.jgrapht.graph.DefaultWeightedEdge,?>SimplifiedWatset. globalThe global clustering algorithm supplier.protected ClusteringAlgorithmBuilder<Sense<V>,org.jgrapht.graph.DefaultWeightedEdge,?>SimplifiedWatset.Implementation. globalThe global clustering algorithm supplier.protected ClusteringAlgorithmBuilder<V,E,?>SenseInduction. localThe local clustering algorithm supplier.Methods in org.nlpub.watset.graph with parameters of type ClusteringAlgorithmBuilder Modifier and Type Method Description SimplifiedWatset.Builder<V,E>SimplifiedWatset.Builder. setGlobal(ClusteringAlgorithmBuilder<Sense<V>,org.jgrapht.graph.DefaultWeightedEdge,?> global)Set the global clustering algorithm supplier.Watset.Builder<V,E>Watset.Builder. setGlobal(ClusteringAlgorithmBuilder<Sense<V>,org.jgrapht.graph.DefaultWeightedEdge,?> global)Set the global clustering algorithm builder.SimplifiedWatset.Builder<V,E>SimplifiedWatset.Builder. setLocal(ClusteringAlgorithmBuilder<V,E,?> local)Set the local clustering algorithm supplier.Watset.Builder<V,E>Watset.Builder. setLocal(ClusteringAlgorithmBuilder<V,E,?> local)Set the local clustering algorithm builder.Constructors in org.nlpub.watset.graph with parameters of type ClusteringAlgorithmBuilder Constructor Description Implementation(org.jgrapht.Graph<V,E> graph, SenseInduction<V,E> inducer, ClusteringAlgorithmBuilder<Sense<V>,org.jgrapht.graph.DefaultWeightedEdge,?> global)Create an instance of the Simplified Watset clustering algorithm implementation.SenseInduction(org.jgrapht.Graph<V,E> graph, ClusteringAlgorithmBuilder<V,E,?> local)Create an instance ofSenseInduction.SimplifiedWatset(org.jgrapht.Graph<V,E> graph, ClusteringAlgorithmBuilder<V,E,?> local, ClusteringAlgorithmBuilder<Sense<V>,org.jgrapht.graph.DefaultWeightedEdge,?> global)Create an instance of the Simplified Watset clustering algorithm.Watset(org.jgrapht.Graph<V,E> graph, ClusteringAlgorithmBuilder<V,E,?> local, ClusteringAlgorithmBuilder<Sense<V>,org.jgrapht.graph.DefaultWeightedEdge,?> global, ContextSimilarity<V> similarity)Deprecated.Create an instance of the Watset clustering algorithm. -
Uses of ClusteringAlgorithmBuilder in org.nlpub.watset.util
Classes in org.nlpub.watset.util that implement ClusteringAlgorithmBuilder Modifier and Type Class Description classClusteringAlgorithmProvider<V,E>A utility class that creates instances of the graph clustering algorithms.
-