-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpostprocess_config.ini
44 lines (32 loc) · 1.01 KB
/
postprocess_config.ini
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
[DEFAULT]
###############
# INPUT FILES #
###############
# Final knowledge graph.
final_kg = /path/to/output/directory/kg_final.txt
# Label rules.
label_rules = /path/to/data/directory/label_rules.xml
# Domain and range of a relation.
domain_range = /path/to/data/directory/domain_range.txt
################
# OUTPUT FILES #
################
# Output folder directory.
output_path = /path/to/output/directory
# All entities.
entities = /path/to/output/directory/entities.txt
# All entities with their entity types.
entity_full_names = /path/to/output/directory/entity_full_names.txt
# All data in the knowledge graph.
all_data = /path/to/output/directory/data.txt
# Hypotheses to test.
hypotheses = /path/to/output/directory/hypotheses.txt
##################
# OTHER SETTINGS #
##################
# Number of folds for k-fold CV.
num_folds = 5
# Predicate (relation) to generate the hypotheses.
hypothesis_relation = confers resistance to antibiotic
# Number of negativs to generate for each positive.
num_negatives = 49