Skip to content

Linker / Graph Configuration

The [linker] and [graph] configuration sections are optional.

Linker

toml
[linker]
ngram_range = [ 1, 2, 3 ]
stop_words = []
OptionDescriptionDefault
ngram_rangeRange of NGram sizes to use for keyword linking[1, 2, 3]
stop_wordsAdditional stop words to exclude from keyword extraction[]

Graph

toml
[graph]
min_node_weight = 2.0
max_node_weight = 12.0
min_link_weight = 0.1
default_mode = "3d"
OptionDescriptionDefault
min_node_weightMinimum NGram weight to allow to show up in the graph2.0 (Increase to a larger number for large note directories)
max_node_weightMaximum size of a node in the graph (larger values are clamped to this size)10.0
min_link_weightThe minimum allowed link strength between a note and NGram0.1 (Increase to a larger number (0.2-0.3) for larger note directories)
default_modeDefault graph mode (2d/3d)"2d"

TODO: better explanation of what these options affect.