After export onnx model, two inputs are missing

Hi everyone,

I export a model by torch.onnx.export function. But I give 8 args, so the forward function needs 8 args, but the output graph only have 6 input nodes.

I know maybe the other 2 inputs doesn’t make sense to final outputs, so they don’t appear in the output graph.

My question is now I don’t know which 6 args are needed in 8 args.

BTW, the code is from github, so I don’t know why the 2 args not be used now.