#!/bin/bash #This is the first version of locomo RowPruner="StaticLocomo"; Learner="lc"; numberOfAttributes=`./attributes $1`; for nearest in 5 10 20 40 80 do numberOfInstances=$nearest; ./staticLocomo_main $1 $2 $Pred $nearest | gawk 'BEGIN {FS=OFS=","} NF==2 {print Prefix,$1,$2}' Prefix="$R,$stem,$Training,$Num,$ColumnPruner,$RowPruner,$numberOfAttributes,$numberOfInstances,$Learner"; done