-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_challenges.sh
executable file
·48 lines (38 loc) · 1.2 KB
/
run_challenges.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
echo "Running challenges ..."
# corenlp
echo "CoreNLP..."
python3 tools/corenlp/challenges.py
echo "------------------------------------------------------------"
# frog
echo "Frog..."
python3 tools/frog/challenges.py
echo "------------------------------------------------------------"
# icews
echo "ICEWS..."
Rscript tools/icews/challenges.r
echo "------------------------------------------------------------"
# jrcnames
echo "JRC Names..."
Rscript tools/jrcnames/challenges.r
echo "------------------------------------------------------------"
# nametagger
echo "nametagger..."
Rscript tools/nametagger/challenges.r
echo "------------------------------------------------------------"
# nltk
echo "NLTK..."
python3 tools/nltk/challenges.py
echo "------------------------------------------------------------"
# opennlp
echo "OpenNLP..."
python3 tools/opennlp/challenges.py
echo "------------------------------------------------------------"
# spacy
echo "spaCy..."
python3 tools/spacy/challenges.py
echo "------------------------------------------------------------"
# xlm-roberta
echo "XLM-RoBERTa..."
python3 tools/xlmroberta/challenges.py
echo "------------------------------------------------------------"
echo "Done!"