-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.py
More file actions
22 lines (17 loc) · 729 Bytes
/
const.py
File metadata and controls
22 lines (17 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -------------------------------------------------------
# Assignment (2)
# Written by (Mohamed Hefny, 40033382)
# For COMP 472 Section (ABIX) – Summer 2020
# --------------------------------------------------------
INPUT_FILE = "csvFiles/hns_2018_2019.csv"
INPUT_TEST = "csvFiles/hns_2018_2019.csv"
STOPWORDS = "stopwords.txt"
VOCABULARY = "txtOutput/vocabulary.txt"
REMOVEDWORDS = "txtOutput/remove_word.txt"
MODEL_FILE = "txtOutput/model-2018.txt"
BASELINE_RESULT = "txtOutput/baseline-result.txt"
STOPWORD_MODEL = "txtOutput/stopword-model.txt"
STOPWORD_RESULT = "txtOutput/stopword-result.txt"
WORDLENGTH_MODEL = "txtOutput/wordlength-model.txt"
WORDLENGTH_RESULT = "txtOutput/wordlength-result.txt"
HEURSTIC = True