ducttape
ducttape copied to clipboard
Summaries of summaries?
I wanted to display individual as well as averaged results, so I tried constructing a summary that would depend on another summary:
summary xresults {
of eval > Acc {
egrep -o "'Acc': ...." $result | cut -d' ' -f2 > $Acc
}
}
summary xresults2 {
of eval < Acc=@xresults[FoldA:*,FoldB:*,FoldC:*] > Avg {
echo "$Acc" > $Avg
}
}
This does not produce any syntax errors, but when I run the summary command, xresults2
is silently ignored.
No support for this yet. I recommend writing two independent summaries.
I'll add a proper error message.