Skip to content
Snippets Groups Projects
Commit 0538ab29 authored by Athanasios Xygkis's avatar Athanasios Xygkis
Browse files

Merge branch 'json' into 'master'

Update predictor json with stddev

See merge request sacs/cs-449-sds-public/project/cs449-Template-M1!2
parents c233f212 c44b668c
No related branches found
No related tags found
1 merge request!2Update predictor json with stddev
......@@ -76,22 +76,26 @@ object Predictor extends App {
"DurationInMicrosecForGlobalMethod" -> Map(
"min" -> 0.0, // Datatype of answer: Double
"max" -> 0.0, // Datatype of answer: Double
"average" -> 0.0 // Datatype of answer: Double
"average" -> 0.0, // Datatype of answer: Double
"stddev" -> 0.0 // Datatype of answer: Double
),
"DurationInMicrosecForPerUserMethod" -> Map(
"min" -> 0.0, // Datatype of answer: Double
"max" -> 0.0, // Datatype of answer: Double
"average" -> 0.0 // Datatype of answer: Double
"average" -> 0.0, // Datatype of answer: Double
"stddev" -> 0.0 // Datatype of answer: Double
),
"DurationInMicrosecForPerItemMethod" -> Map(
"min" -> 0.0, // Datatype of answer: Double
"max" -> 0.0, // Datatype of answer: Double
"average" -> 0.0 // Datatype of answer: Double
"average" -> 0.0, // Datatype of answer: Double
"stddev" -> 0.0 // Datatype of answer: Double
),
"DurationInMicrosecForBaselineMethod" -> Map(
"min" -> 0.0, // Datatype of answer: Double
"max" -> 0.0, // Datatype of answer: Double
"average" -> 0.0 // Datatype of answer: Double
"average" -> 0.0, // Datatype of answer: Double
"stddev" -> 0.0 // Datatype of answer: Double
),
"RatioBetweenBaselineMethodAndGlobalMethod" -> 0.0 // Datatype of answer: Double
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment