X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=agtree2dot.git;a=blobdiff_plain;f=mlp.py;fp=mlp.py;h=963e7b7d55ac267f0beac10ec9f44f12506f9f93;hp=21a772c6331312abde4759db4d3250d6f474b36b;hb=f06a806854deeb2bb50324045a10b4a593927655;hpb=75c4f522cda71ef830148ec8d881157322be9502 diff --git a/mlp.py b/mlp.py index 21a772c..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)