# Introduction #
-This package provides a function that generates a dot file from the
+This package provides a function that generates a [dot file](https://en.wikipedia.org/wiki/DOT_(graph_description_language)) from the
autograd graph.
# Usage #
open('./mlp.dot', 'w'))
```
-which would generate a file mlp.dot, which can then be translated to pdf with
+which would generate a file mlp.dot, which can then be translated to
+pdf using the [Graphviz tools](http://www.graphviz.org/)
```
dot mlp.dot -Lg -T pdf -o mlp.pdf