in src/main/java/com/twitter/sbf/core/MHAlgorithm.java [563:578]
private static List<String> metricFieldsToUse(Graph graph, AlgorithmConfig config) {
List<String> ret = METRICS_FIELDS;
if (!config.useTemperatureSchedule) {
ret.remove("temp");
}
if (!graph.isWeighted()) {
ret.remove("wtPrec");
ret.remove("wtRec");
ret.remove("wtF1");
}
if (graph.getNumVertices() < 20000) {
ret.remove("evalSec");
ret.remove("updateSec");
}
return ret;
}