Package org.nlpub.watset.graph
Class MarkovClusteringExternal<V,E>
java.lang.Object
org.nlpub.watset.graph.MarkovClusteringExternal<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 MarkovClusteringExternal<V,E>
extends Object
implements org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
A wrapper for the official implementation of the Markov Clustering (MCL) algorithm in C.
This is a weird thing. The official implementation of MCL is very fast, but we need to run the separate process and speak to it over standard input/output redirection.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Builder forMarkovClusteringExternal
.static class
Actual implementation of the Markov Clustering wrapper. -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMarkovClusteringExternal
(org.jgrapht.Graph<V, E> graph, Path path, double r, int threads) Create an instance of the Markov Clustering algorithm wrapper. -
Method Summary
Modifier and TypeMethodDescriptionstatic <V,
E> MarkovClusteringExternal.Builder<V, E> builder()
Create a builder.org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
-
Field Details
-
graph
The graph. -
path
The path to the MCL binary. -
r
protected final double rThe inflation parameter. -
threads
protected final int threadsThe number of threads. -
clustering
The cached clustering result.
-
-
Constructor Details
-
MarkovClusteringExternal
Create an instance of the Markov Clustering algorithm wrapper.- Parameters:
graph
- the graphpath
- the path to the MCL binaryr
- the inflation parameterthreads
- the number of threads
-
-
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>
-