#!/bin/bash #This is simple LC with original settings for e, sd, and org. It only runs on the test file and does not need the train file (since settings are already known). RowPruner="None"; numberOfInstances="na"; numberOfAttributes=`./attributes $1`; Learner="e"; Prefix="$R,$stem,$Training,$Num,$ColumnPruner,$RowPruner,$numberOfAttributes,$numberOfInstances,$Learner"; ./coseekmo_lc -i $Prefix -p $Pred -a 2.8 -b 1.2 $1; Learner="sd"; Prefix="$R,$stem,$Training,$Num,$ColumnPruner,$RowPruner,$numberOfAttributes,$numberOfInstances,$Learner"; ./coseekmo_lc -i $Prefix -p $Pred -a 3 -b 1.12 $1; Learner="org"; Prefix="$R,$stem,$Training,$Num,$ColumnPruner,$RowPruner,$numberOfAttributes,$numberOfInstances,$Learner"; ./coseekmo_lc -i $Prefix -p $Pred -a 3.2 -b 1.05 $1;