Skip to content

Commit

Permalink
Changed experiments view accuracy to percent
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgeoca committed Feb 17, 2016
1 parent 196de4b commit d34acf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion levar-core/src/main/scala/levar/Format.scala
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ object Format {
experiment.classificationResults foreach { results =>
sb ++= "\n\nResults:\n"

sb ++= f"\nOverall accuracy: ${results.overallAccuracy}%.3f\n"
sb ++= f"\nOverall accuracy: ${100 * results.overallAccuracy}%5.1f\n"

val clsWidth = (Seq(10) ++ results.classes.map(_.size)).max + 1

Expand Down

0 comments on commit d34acf8

Please sign in to comment.