ConfidenceResult confidenceResult =
confidenceScorer.score(result);
bestPath = confidenceResult.getBestHypothesis();
hyp = bestPath.getTranscriptionNoFiller();
}
aligner.align(ref, hyp);
if (bestPath != null) {
showDetails(bestPath.getTranscription());
} else {
showDetails("");
}