fixing bad format statement
This commit is contained in:
parent
781c0c33a4
commit
41d46059e7
|
|
@ -157,7 +157,7 @@ public class VariantDataManager {
|
|||
numAdded++;
|
||||
}
|
||||
}
|
||||
logger.info( "Additionally training with worst " + String.format("%0.3f", (float) bottomPercentage * 100.0f) + "% of passing data --> " + (trainingData.size() - numBadSitesAdded) + " variants with LOD <= " + String.format("%.4f", data.get(index).lod) + "." );
|
||||
logger.info( "Additionally training with worst " + String.format("%.3f", (float) bottomPercentage * 100.0f) + "% of passing data --> " + (trainingData.size() - numBadSitesAdded) + " variants with LOD <= " + String.format("%.4f", data.get(index).lod) + "." );
|
||||
return trainingData;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue