-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDB_bk.txt
45 lines (45 loc) · 1.38 KB
/
DB_bk.txt
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
// BK file follows assumption that each predicate name is unique
// Options for the ILP search:
option(M) = 20. // Number of gradient steps
option(CM) = 1. // Number of clauses learned for each target per gradient step
option(N) = 4. // Maximum length of a clause
option(B) = 10. // Beam sizepredDef: author(paper, auth).
predDef: haswordauthor(auth, word).
predDef: haswordtitle(title, word).
predDef: haswordvenue(venue, word).
predDef: title(paper, title).
predDef: venue(paper, venue).
predDef: author(paper, auth).
predDef: haswordauthor(auth, word).
predDef: haswordtitle(title, word).
predDef: haswordvenue(venue, word).
predDef: title(paper, title).
predDef: venue(paper, venue).
predDef: samebib(paper, paper).
predDef: sametitle(title, title).
predDef: samevenue(venue, venue).
predDef: sameauthor(auth, auth)?.
predDef: samebib(paper, paper).
predDef: sametitle(title, title).
predDef: samevenue(venue, venue).
predDef: sameauthor(auth, auth)?.
mode: author(+, -).
mode: haswordauthor(+, -).
mode: haswordtitle(+, -).
mode: haswordvenue(+, -).
mode: title(+, -).
mode: venue(+, -).
mode: author(-, +).
mode: haswordauthor(-, +).
mode: haswordtitle(-, +).
mode: haswordvenue(-, +).
mode: title(-, +).
mode: venue(-, +).
mode: samebib(+, -).
mode: sametitle(+, -).
mode: samevenue(+, -).
mode: sameauthor(+, -).
mode: samebib(-, +).
mode: sametitle(-, +).
mode: samevenue(-, +).
mode: sameauthor(-, +).