Class MarkovClustering.Implementation<V,E>

java.lang.Object
org.nlpub.watset.graph.MarkovClustering.Implementation<V,E>
Type Parameters:
V - the type of nodes in the graph
E - the type of edges in the graph
Enclosing class:
MarkovClustering<V,E>

protected static class MarkovClustering.Implementation<V,E> extends Object
Actual implementation of Markov Clustering.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected final int
    The expansion parameter.
    protected final org.jgrapht.Graph<V,E>
    The graph.
    protected final Matrices.InflateVisitor
    The inflation visitor that raises each element of matrix to the power of r.
    protected final int
    The maximal number of iterations.
    protected final org.jgrapht.util.VertexToIntegerMapping<V>
    The mapping of graph nodes to the columns of matrix.
    protected org.apache.commons.math3.linear.RealMatrix
    The stochastic matrix.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Implementation(org.jgrapht.Graph<V,E> graph, int e, double r, int iterations)
    Create an instance of the Markov Clustering algorithm implementation.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
    Perform clustering with Markov Clustering.
    protected void
    Perform the expansion step.
    protected void
    Perform the inflation step.
    protected void
    Normalize the matrix.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • graph

      protected final org.jgrapht.Graph<V,E> graph
      The graph.
    • e

      protected final int e
      The expansion parameter.
    • iterations

      protected final int iterations
      The maximal number of iterations.
    • inflateVisitor

      protected final Matrices.InflateVisitor inflateVisitor
      The inflation visitor that raises each element of matrix to the power of r.
    • mapping

      protected final org.jgrapht.util.VertexToIntegerMapping<V> mapping
      The mapping of graph nodes to the columns of matrix.
    • matrix

      protected org.apache.commons.math3.linear.RealMatrix matrix
      The stochastic matrix.
  • Constructor Details

    • Implementation

      public Implementation(org.jgrapht.Graph<V,E> graph, int e, double r, int iterations)
      Create an instance of the Markov Clustering algorithm implementation.
      Parameters:
      graph - the graph
      e - the expansion parameter
      r - the inflation parameter
      iterations - the maximal number of iterations
  • Method Details

    • compute

      public org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V> compute()
      Perform clustering with Markov Clustering.
      Returns:
      the clustering
    • normalize

      protected void normalize()
      Normalize the matrix.
    • expand

      protected void expand()
      Perform the expansion step.
    • inflate

      protected void inflate()
      Perform the inflation step.