-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.ini
37 lines (31 loc) · 1.12 KB
/
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
[run]
# The directory of outputs
output_path = results/SS/
[data]
# the common directory path
common = data/SS
# the path of label set
label_set_path = ${common}/labels/tags.txt
# the path of training examples
entities_path = ${common}/entities/train.txt
# the path of training embeddings.
embeddings_path = ${common}/embeddings/layers/train/12.txt
# the path of test examples
test_entities_path = ${common}/entities/test.txt
# the path of test emebddings
test_embeddings_path = ${common}/embeddings/layers/test/12.txt
[clustering]
# If enable gpu
enable_cuda = True
# What is the step size when we check the overlapps
# In most case, this setting does not need to be changed.
rate=0.01
# There are two modes: probing and prediction
# probing mode: Apply the DirectProbe on the given training set and make predictions on the test set.
# prediction mode: Using the given cluters to make predictions using the test set.
# We need a prediction mode because in some case, clustering process is time consuming.
# We want to reuse the cluters.
mode = probing
# mode = prediction
# The path of pre-probed clusters.
probing_cluster_path = results/SS/