|
| 1 | +### THIS SCRIPT PRODUCES PREDICTIONS AND EVALUATES THEM FOR ALL MODELS WITH SEMEVAL-ENG PARAMETERS ### |
| 2 | + |
| 3 | +## Download corpora and testsets ## |
| 4 | +wget https://www2.ims.uni-stuttgart.de/data/sem-eval-ulscd/semeval2020_ulscd_ger.zip -nc -P testsets/ |
| 5 | +cd testsets/ && unzip -o semeval2020_ulscd_ger.zip && rm semeval2020_ulscd_ger.zip && cd .. |
| 6 | +if [ ! -d corpora/semeval2020_ulscd_ger ]; |
| 7 | +then |
| 8 | + mkdir -p corpora/semeval2020_ulscd_ger/corpus1/ |
| 9 | + mkdir -p corpora/semeval2020_ulscd_ger/corpus2/ |
| 10 | + scripts/preprocess.sh testsets/semeval2020_ulscd_ger/corpus1/lemma/ corpora/semeval2020_ulscd_ger/corpus1/corpus1_preprocessed.txt 42 |
| 11 | + scripts/preprocess.sh testsets/semeval2020_ulscd_ger/corpus2/lemma/ corpora/semeval2020_ulscd_ger/corpus2/corpus2_preprocessed.txt 43 |
| 12 | + gzip corpora/semeval2020_ulscd_ger/corpus1/* |
| 13 | + gzip corpora/semeval2020_ulscd_ger/corpus2/* |
| 14 | +fi |
| 15 | +rm -r testsets/semeval2020_ulscd_ger/corpus1 |
| 16 | +rm -r testsets/semeval2020_ulscd_ger/corpus2 |
| 17 | + |
| 18 | +## Bring testsets in correct format ## |
| 19 | +mkdir -p testsets/semeval2020_ulscd_ger/testset |
| 20 | +cp -u testsets/semeval2020_ulscd_ger/targets.txt testsets/semeval2020_ulscd_ger/testset/targets.tsv |
| 21 | +cut -f 2- testsets/semeval2020_ulscd_ger/truth/graded.txt > testsets/semeval2020_ulscd_ger/testset/graded.tsv |
| 22 | +cut -f 2- testsets/semeval2020_ulscd_ger/truth/binary.txt > testsets/semeval2020_ulscd_ger/testset/binary.tsv |
| 23 | + |
| 24 | +## Define global parameters ## |
| 25 | +parameterfile=scripts/parameters_semeval_ger.sh # corpus- and testset-specific parameter specifications |
| 26 | + |
| 27 | +## Get predictions from models ## |
| 28 | +# All models with similarity measures |
| 29 | +globalmatrixfolderprefix=matrices/semeval_ger_sim # parent folder for matrices |
| 30 | +globalresultfolderprefix=results/semeval_ger_sim # parent folder for results |
| 31 | +source $parameterfile # get corpus- and testset-specific parameters |
| 32 | +source scripts/make_results_sim.sh |
| 33 | +# Evaluate results |
| 34 | +resultfolder=$resultfolder |
| 35 | +outfolder=$globalresultfolder |
| 36 | +source scripts/run_SPR.sh # Get Spearman correlation of measure predictions with gold scores |
| 37 | +source scripts/run_AP.sh # Get Average Precision of measure predictions with gold classes |
| 38 | + |
| 39 | +# All models with dispersion measures |
| 40 | +globalmatrixfolderprefix=matrices/semeval_ger_disp # parent folder for matrices |
| 41 | +globalresultfolderprefix=results/semeval_ger_disp # parent folder for results |
| 42 | +source $parameterfile # get corpus- and testset-specific parameters |
| 43 | +source scripts/make_results_disp.sh |
| 44 | +# Evaluate results |
| 45 | +resultfolder=$resultfolder |
| 46 | +outfolder=$globalresultfolder |
| 47 | +source scripts/run_SPR.sh # Get Spearman correlation of measure predictions with gold scores |
| 48 | +source scripts/run_AP.sh # Get Average Precision of measure predictions with gold classes |
| 49 | + |
| 50 | +# All models with word injection |
| 51 | +globalmatrixfolderprefix=matrices/semeval_ger_wi # parent folder for matrices |
| 52 | +globalresultfolderprefix=results/semeval_ger_wi # parent folder for results |
| 53 | +source $parameterfile # get corpus- and testset-specific parameters |
| 54 | + |
| 55 | +## Make word-injected corpus ## |
| 56 | +if [ ! -f $wiCorpDir/corpus_wi.txt.gz ]; |
| 57 | +then |
| 58 | + mkdir -p $wiCorpDir |
| 59 | + corpDir1=$corpDir1 |
| 60 | + corpDir2=$corpDir2 |
| 61 | + outfile=$wiCorpDir/corpus_wi.txt |
| 62 | + source scripts/run_WI.sh # Create combined word-injected corpus from corpus1 and corpus2 |
| 63 | +fi |
| 64 | + |
| 65 | +source scripts/make_results_wi.sh |
| 66 | + |
| 67 | +# Evaluate results |
| 68 | +resultfolder=$resultfolder |
| 69 | +outfolder=$globalresultfolder |
| 70 | +source scripts/run_SPR.sh # Get Spearman correlation of measure predictions with gold scores |
| 71 | +source scripts/run_AP.sh # Get Average Precision of measure predictions with gold classes |
0 commit comments