X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=agtree2dot.git;a=blobdiff_plain;f=mlp.py;h=963e7b7d55ac267f0beac10ec9f44f12506f9f93;hp=3c5f026bfa2c8a760b10af1d0e0fb857a2db1dff;hb=9d6a57fb731d72261e4e0a334595cc5745765e2a;hpb=d9e6125c82f4e3775b8c868751b1657a6a147f55 diff --git a/mlp.py b/mlp.py index 3c5f026..963e7b7 100755 --- a/mlp.py +++ b/mlp.py @@ -61,7 +61,14 @@ agtree2dot.save_dot(loss, print('Generated mlp.dot') try: - subprocess.check_call(["dot", "mlp.dot", "-Lg", "-T", "pdf", "-o", "mlp.pdf" ]) + fontname='Computer Modern' + fontsize=12 + subprocess.check_call(['dot', 'mlp.dot', + '-Lg', + '-T', 'pdf', + '-Efontname=' + fontname, '-Efontsize=' + str(fontsize), + '-Nfontname=' + fontname, '-Nfontsize=' + str(fontsize), + '-o', 'mlp.pdf' ]) except subprocess.CalledProcessError: print('Calling the dot command failed. Is Graphviz installed?') sys.exit(1)