Loading src/config.py +3 −3 Original line number Diff line number Diff line Loading @@ -50,15 +50,15 @@ Choose filters for building the graph. - Only considers occurrences/cooccurrences for nodes/edges, that occur more often than these values. - Only considers edges with a weight beneath the maximum weight ''' min_node_freq = 8 min_edge_freq = 4 min_node_freq = 10 min_edge_freq = 5 max_weight = 0.9 ''' Choose minimum number of neighbors and maximum median weight of the most frequent neighbors 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 = 4 min_neighbors = 6 threshold = 0.8 ''' Loading Loading
src/config.py +3 −3 Original line number Diff line number Diff line Loading @@ -50,15 +50,15 @@ Choose filters for building the graph. - Only considers occurrences/cooccurrences for nodes/edges, that occur more often than these values. - Only considers edges with a weight beneath the maximum weight ''' min_node_freq = 8 min_edge_freq = 4 min_node_freq = 10 min_edge_freq = 5 max_weight = 0.9 ''' Choose minimum number of neighbors and maximum median weight of the most frequent neighbors 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 = 4 min_neighbors = 6 threshold = 0.8 ''' Loading