This package provides a function that generates a
[dot file](https://en.wikipedia.org/wiki/DOT_(graph_description_language))
-from a [pytorch](http://pytorch.org) autograd graph.
+from a [PyTorch](http://pytorch.org) autograd graph.
# Usage #
from torch import nn
from torch.nn import functional as fn
from torch import Tensor
-from torch.autograd import Variable
from torch.nn import Module
import agtree2dot
return x
mlp = MLP(10, 20, 1)
-input = Variable(Tensor(100, 10).normal_())
-target = Variable(Tensor(100).normal_())
+input = Tensor(100, 10).normal_()
+target = Tensor(100, 1).normal_()
output = mlp(input)
criterion = nn.MSELoss()
loss = criterion(output, target)