-
Notifications
You must be signed in to change notification settings - Fork 0
/
script-caller.bh
executable file
·64 lines (49 loc) · 2.79 KB
/
script-caller.bh
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
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
#
# Bash-Script to call the news-categorization for automation of evaluation
#
################################################################################
pip install -r requirements.txt
python -m spacy download en_core_web_sm
# All four classes #############################################################
python news-categorization.py -l b t m e --embedding lemma
# Tripple-Fun for good measure #################################################
python news-categorization.py -l t m e --embedding lemma
python news-categorization.py -l b m e --embedding lemma
python news-categorization.py -l b t e --embedding lemma
python news-categorization.py -l b t m --embedding lemma
# Binary cases #################################################################
python news-categorization.py -l b t --embedding lemma
python news-categorization.py -l b m --embedding lemma
python news-categorization.py -l b e --embedding lemma
python news-categorization.py -l t m --embedding lemma
python news-categorization.py -l t e --embedding lemma
python news-categorization.py -l m e --embedding lemma
# All four classes #############################################################
python news-categorization.py -l b t m e --embedding word
# Tripple-Fun for good measure #################################################
python news-categorization.py -l t m e --embedding word
python news-categorization.py -l b m e --embedding word
python news-categorization.py -l b t e --embedding word
python news-categorization.py -l b t m --embedding word
# Binary cases #################################################################
python news-categorization.py -l b t --embedding word
python news-categorization.py -l b m --embedding word
python news-categorization.py -l b e --embedding word
python news-categorization.py -l t m --embedding word
python news-categorization.py -l t e --embedding word
python news-categorization.py -l m e --embedding word
# All four classes #############################################################
python news-categorization.py -l b t m e --embedding word2vec
# Triple-Fun for good measure #################################################
python news-categorization.py -l t m e --embedding word2vec
python news-categorization.py -l b m e --embedding word2vec
python news-categorization.py -l b t e --embedding word2vec
python news-categorization.py -l b t m --embedding word2vec
# Binary cases #################################################################
python news-categorization.py -l b t --embedding word2vec
python news-categorization.py -l b m --embedding word2vec
python news-categorization.py -l b e --embedding word2vec
python news-categorization.py -l t m --embedding word2vec
python news-categorization.py -l t e --embedding word2vec
python news-categorization.py -l m e --embedding word2vec