Compare commits
No commits in common. "21accd7e116db41b4fae7032526ac09ffbc330c7" and "86bdb30ff38b738ca46fbef09f0e2a7b77c22758" have entirely different histories.
21accd7e11
...
86bdb30ff3
@ -1,36 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
|
|
||||||
pushd zad/24/2
|
|
||||||
|
|
||||||
IFS=$'\n'
|
|
||||||
|
|
||||||
echo "Naprawianie błędnych plików:"
|
|
||||||
|
|
||||||
for d in $(wc -l */out.tsv | grep -v $(cat ~/sport-text-classification-ball-dont-peek/test-A/expected.tsv | wc -l) | grep -v $(cat ~/sport-text-classification-ball-dont-peek/dev-0/expected.tsv | wc -l) | grep -v total | sed 's/^[0-9 ]\+//' | sed 's|/[a-z]\+.tsv$||' | sort -u)
|
|
||||||
do
|
|
||||||
mv $d/out.tsv $d/out.tsv.bak
|
|
||||||
tail -n $(cat ~/sport-text-classification-ball-dont-peek/test-A/expected.tsv | wc -l) $d/out.tsv.bak >$d/out.tsv
|
|
||||||
wc -l $d/out.tsv
|
|
||||||
done
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "Wyniki dla test-A:"
|
|
||||||
|
|
||||||
for d in $(wc -l */out.tsv | grep $(cat ~/sport-text-classification-ball-dont-peek/test-A/expected.tsv | wc -l) | sed 's/^[0-9 ]\+//' | sed 's|/[a-z]\+.tsv$||' | sort -u)
|
|
||||||
do
|
|
||||||
cp ~/sport-text-classification-ball-dont-peek/test-A/expected.tsv $d/
|
|
||||||
geval -t $d | python3 -c "import sys, math; x=sys.stdin.read().strip(); print(x, '\t', math.ceil(float(x) * 7.0), end='\t')"
|
|
||||||
echo $d | sed 's/_[0-9]\+_assignsubmission_file_$/\t/'
|
|
||||||
done
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "Wyniki dla dev-0:"
|
|
||||||
|
|
||||||
for d in $(wc -l */out.tsv | grep $(cat ~/sport-text-classification-ball-dont-peek/dev-0/expected.tsv | wc -l) | sed 's/^[0-9 ]\+//' | sed 's|/[a-z]\+.tsv$||' | sort -u)
|
|
||||||
do
|
|
||||||
cp ~/sport-text-classification-ball-dont-peek/dev-0/expected.tsv $d/
|
|
||||||
geval -t $d | python3 -c "import sys, math; x=sys.stdin.read().strip(); print(x, '\t', math.ceil(float(x) * 7.0), end='\t')"
|
|
||||||
echo $d | sed 's/_[0-9]\+_assignsubmission_file_$/\t/'
|
|
||||||
done
|
|
||||||
|
|
||||||
popd
|
|
Loading…
Reference in New Issue
Block a user