aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/TOM/README
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-04-02 00:27:43 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-04-02 00:27:43 +0000
commit9a2f9e8a32e02d7541a76e518e2907f7da939bfd (patch)
tree9569351be5b50753b63a0cd8a99078b54012b3bb /contrib/TOM/README
parent9e4d243f1360158555fe92cc35fae6521bfdfce5 (diff)
parent80b0ba4a8d41adee65adf73bebed4bbef3c065c3 (diff)
Merge "init TOM: machine learning on test results"
Diffstat (limited to 'contrib/TOM/README')
-rw-r--r--contrib/TOM/README27
1 files changed, 25 insertions, 2 deletions
diff --git a/contrib/TOM/README b/contrib/TOM/README
index 706573ce..c7581233 100644
--- a/contrib/TOM/README
+++ b/contrib/TOM/README
@@ -1,4 +1,27 @@
-https://wiki.opnfv.org/display/testing/R+post-processing+of+the+Yardstick+results
-
+# TOM: Machine Learning-Based Test Results Analysis
This folder is created for TOM, a performance dataset processing tool, by Alassane Samba <alassane.samba@orange.com>
+see https://wiki.opnfv.org/display/testing/R+post-processing+of+the+Yardstick+results
+
+## deploy the TOM API server
+Rscript tomRun.R
+
+## load file
+curl <your_local_ip>:8000/read?file=~/TOM/examples/test_opnfv_yardstick_tc012.csv
+
+## analyze
+curl <your_local_ip>:8000/analyze?input=deploy_scenario:version:pod_name:runner_id&output=bandwidth.MBps.
+
+## view bivariate correlation between the inputs and the output
+curl <your_local_ip>:8000/correlation
+
+## view the analysis results in terms of output explaination rate obtained by combining inputs
+curl <your_local_ip>:8000/explain
+
+## view the corresponding graphic
+curl <your_local_ip>:8000/explainGraph > explainGraph.png
+
+## compare different PODs (boxplots)
+curl <your_local_ip>:8000/comparGraph?input=pod_name&output=bandwidth.MBps.&limit=10 > comparGraph.png
+## compare different configurations described by pod_name and deploy_scenario (boxplots)
+curl <your_local_ip>:8000/comparGraph?input=pod_name:deploy_scenario&output=bandwidth.MBps.&limit=20 > comparGraph2.png