Package org.nlpub.watset.eval
Class Measurer<V,E>
java.lang.Object
org.nlpub.watset.eval.Measurer<V,E>
- Type Parameters:
V
- the type of nodes in the graphE
- the type of edges in the graph
A clustering algorithm performance measurement class.
Given a clustering algorithm provider and a graph, it measures the running time of the clustering algorithm on every input graph.
Before recording the measurements, it warms up by running exactly the same operation to leverage the influence of JIT and other VM optimizations.
- See Also:
-
ClusteringAlgorithm
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
A performance measurement result. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The default number of repetitions.static final int
The default number of warmup runs kept off-record beforeREPETITIONS
. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
REPETITIONS
public static final int REPETITIONSThe default number of repetitions.- See Also:
-
WARMUP
public static final int WARMUPThe default number of warmup runs kept off-record beforeREPETITIONS
.- See Also:
-
-
Constructor Details
-
Measurer
public Measurer(ClusteringAlgorithmBuilder<V, E, ?> provider, org.jgrapht.Graph<V, E> graph, int repetitions, int warmup) Create an instance ofMeasurer
.- Parameters:
provider
- the clustering algorithm providergraph
- the graphrepetitions
- the number of repetitionswarmup
- the number of off-record repetitions
-
Measurer
Create an instance ofMeasurer
.- Parameters:
provider
- the clustering algorithm providergraph
- the graph
-
-
Method Details
-
getGraph
Return the input graph.- Returns:
- the graph
-
getDurations
Return the list of the measured graph clustering durations in milliseconds.- Returns:
- the list of durations
-
getClusters
Return the list of the measured number of clusters.- Returns:
- the list of cluster sizes
-
run
public void run()Perform the measurement. First,warmup
iterations are performed off-record. Then, the actualrepetitions
are performed to measure the performance of the clustering algorithm.
-