From 91067bfefeeb846d2824b8d10ad8c45a76dafd55 Mon Sep 17 00:00:00 2001 From: SamuelDiai Date: Fri, 2 Apr 2021 02:26:12 +0200 Subject: [PATCH] . --- animals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animals.py b/animals.py index 79e347d..2f08627 100644 --- a/animals.py +++ b/animals.py @@ -40,7 +40,7 @@ def animals(k, n_iter, alpha, beta): mapping[i] = animals_names[i, 0] G = nx.relabel_nodes(G, mapping) - fig = plt.figure(figsize=(10,10)) + fig = plt.figure(figsize=(12,12)) nx.draw(G, with_labels=True, font_weight='bold', width=norm_weights) plt.title("Learned graph for the animal dataset k=%s n_iter=%s alpha=%.3f beta=%.3f" % (k , n_iter, alpha, beta)) filename = os.path.join(plots_dir, 'animals', 'graph')