You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
Python
59 lines
1.5 KiB
Python
EPISTEMIC = "epistemic" # Expresses degree of coloniality.
|
|
|
|
|
|
# gradation of intensity words
|
|
# 100.00 = absolute level of coloniality
|
|
# 90.00 = extreme level of coloniality
|
|
# 80.00 = heavy level of coloniality
|
|
# 70.00 = high level of coloniality
|
|
# 60.00 = significant level of coloniality
|
|
# 50.00 =
|
|
# 40.00 = relative level of coloniality
|
|
# 30.00 = moderate level of coloniality
|
|
# 20.00 = reasonable level of coloniality
|
|
# 10.00 = fair level of coloniality
|
|
# 0.00 = neutral level of coloniality
|
|
|
|
# lists of part of speech
|
|
#MD = would, could...
|
|
#RB = adverb 'very', 'slightly'...
|
|
#VB = verb
|
|
#JJ = adjective 'big'...
|
|
#NN = noun
|
|
#CC = coordinating conjunction 'and', 'or'...
|
|
#PRP = personal pronoun 'I', 'he', 'she'...
|
|
|
|
|
|
|
|
epistemic_MD = { # would => could => can => should => shall => will => must
|
|
100.00: d("have", "has", "must", "need"),
|
|
90.00: d("have", "has", "must", "need"),
|
|
80.00: d("can", "ca", "may"),
|
|
70.00: d(),
|
|
60.00: d(),
|
|
50.00: d("shall", "sha"),
|
|
40.00: d("will", "'ll", "wo"),
|
|
30.00: d(),
|
|
20.00: d("can", "ca", "may"),
|
|
10.00: d("could", "dare", "might"),
|
|
0.00: d("would"),
|
|
}
|
|
|
|
|
|
epistemic_VB = { #verbs from FaceApp ToS
|
|
100.00: d("must", "agree","use"),
|
|
90.00: d("use", "bound", "access", "allow", "acknowlegde", "reproduce"),
|
|
80.00: d("choose","claim", "permit", "collect" ),
|
|
70.00: d("change", ),
|
|
60.00: d("create"),
|
|
50.00: d(),
|
|
40.00: d("maintain"),
|
|
30.00: d("support"),
|
|
20.00: d("identify"),
|
|
10.00: d("may"),
|
|
0.00: d(),
|
|
}
|
|
|
|
|
|
|