I just changed the simple config file from the example.
# File where the input graph is stored. Format of the data
# is specified by the "data_format" field. The most common
# format is the edge_factored way where each line specifies an
# edge in the graph. For example,
# <source_node>TAB<target_node>TAB<edge_weight>
#
graph_file = /work/eng/eliavb/junto/examples/simple/data/input_graph
data_format = edge_factored
# Specifies the seed label information to be injected into
# selected nodes at the start of the algorithm.
seed_file = /work/eng/eliavb/junto/examples/simple/data/seeds
# Gold labels of nodes (if known). This gold label information
# is used only during evaluation.
#gold_labels_file = data/gold_labels
# Nodes (along with corresponding gold label information) which
# are used during evaluation, if any. This is kept as separate
# option from the gold_labels_file, as we may not evaluate all
# nodes whose gold label information is known.
#test_file = data/gold_labels
# Number of label propagation rounds
iters = 30
verbose = false
# All nodes with degree lower than this threshold will be pruned
# away. No nodes will be pruned with a threshold of 0
prune_threshold = 0
# Choose one of the three label propagations algorithms
algo = lp_zgl
#algo = adsorption
#algo = mad
# Hyperparameters for Adsorption and MAD
mu1 = 1
mu2 = 1e-2
mu3 = 1e-2
beta = 2
# File where label propagation output is stored. Each line
# corresponds to a node and fields in the line are organized
# as follows:
#
# <node_name>TAB[<gold_label> <gold_score>]+TAB[<seed_label> <seed_score>]+TAB\
# [<estimated_label> <estimated_score>]+TAB<is_test_node>TAB<node_MRR>
#
# For nodes for which gold (or seed label) information is not known, the corresponding
# field is left empty.
#
output_file = /work/eng/eliavb/junto/examples/simple/data/label_prop_output