-
Notifications
You must be signed in to change notification settings - Fork 40
/
parameters.cfg
32 lines (23 loc) · 984 Bytes
/
parameters.cfg
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
# maximum number of tokens between the two entities
max_tokens_away=6
# minimum number of tokens between the two entities
min_tokens_away=1
# number of tokens to the left and right
context_window_size=3
# comment not to use ReVerb patterns
use_reverb
# If parameter Wupdt < 0.5 then the system in effect trusts new examples less on each iteration, which will lead to more conservative patterns and have a damping effect.
wUpdt=0.5
# number of iterations of the system
number_iterations=4
# Weight given to unknown relationships extracted seeds. i.e., since they are not in the seed set, nothing can be said
about them
wUnk=0.1
# Weight given to negative seeds, i.e., negative examples of the relationships to be extracted
wNeg=2
# minimum number of patterns that generated a tuple so that tuple can be used in the clustering phase
min_pattern_support=2
# parameters for the cosine similarity between the three relationships vector contexts
alpha = 0.2
beta = 0.6
gamma = 0.2