Short name describing what triggered the graph break
torch.nn.Parameter()
with unsupported data type
Values or code snippet captured at the break point
data={data}
Explanation of why the graph break was triggered
Called torch.nn.Parameter()
with non-Tensor argument.
Hints on how to resolve the graph break
torch.nn.Parameter()
is a torch.Tensor
.