Commit 3bf0081e authored by hoffmann's avatar hoffmann
Browse files

hyperlex Settings

parent b92b3476
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -22,8 +22,8 @@ Methods labeled with 0 are ignored.
At least one method must be given a value != 0.
'''
resolve_conflicts = False #not yet implemented
colour_rank = 1
mst_rank = 0
colour_rank = 0
mst_rank = 1

'''
Choose stop words and allowed pos-tags.
@@ -52,16 +52,16 @@ or
- Only considers occurrences/cooccurrences for nodes/edges, that occur more often than these values.
- Only considers edges with a weight beneath the maximum weight
'''
use_mean_freq = True
min_node_freq = 9
min_edge_freq = 3
use_mean_freq = False
min_node_freq = 10
min_edge_freq = 5
max_weight = 0.9

'''
Choose minimum number of neighbours and maximum median weight of the most frequent neighbours of a node for root hubs.
- the threshold is calculated using the media of the same number of neighbors declared in min_neighbors.
'''
min_neighbors = 5
min_neighbors = 6
threshold = 0.8

'''