From 20cff56d93b10962ee21577d0a25fc7b5e6907b5 Mon Sep 17 00:00:00 2001 From: davor Date: Fri, 25 Nov 2011 08:56:25 +0100 Subject: Added scripts for automated crossvalidations --- 5x_cv/comparealgs_dv.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 5x_cv/comparealgs_dv.sh (limited to '5x_cv/comparealgs_dv.sh') diff --git a/5x_cv/comparealgs_dv.sh b/5x_cv/comparealgs_dv.sh new file mode 100755 index 0000000..1b7a7b4 --- /dev/null +++ b/5x_cv/comparealgs_dv.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +if [ $# -ne 4 ]; then + echo "\"validation_uri1,validation_uri2,...\" \"identifier1,identifier2,...\" \"significance [0.95-0.6]\" \"attributes: weighted_r_square,weighted_root_mean_squared_error,weighted_mean_absolute_error,r_square,root_mean_squared_error,sample_correlation_coefficient\"" + exit 1 +fi + +uris="$1" +iden="$2" +signi="$3" #default 0.9; 0.95 - 0.6 +attri="$4" #weighted_r_square,weighted_root_mean_squared_error,weighted_mean_absolute_error,r_square,root_mean_squared_error,sample_correlation_coefficient +host="toxcreate3.in-silico.ch:8080" + +curl -X POST -d "validation_uris=$uris" -d "identifier=$iden" -d "ttest_significance=$signi" -d "ttest_attributes=$attri" http://$host/validation/report/algorithm_comparison -- cgit v1.2.3