When modifying the parameters of the GraphModule node, the modified network returns a value of None.
eg:
for node in model.graph.nodes:
node.args = new_args
torch.fx.symbolic(model, model.graph)
# when forward this model, will return None, in other pytorch version have not this phenomenon.