Printing weights while training

I try to print weights while training but it’s printing initial values every time not the updated ones:
for param in model_hybrid.fc.pre_net.parameters():
print(param.data)

How can you tell your params are being updated (if printing them prints out the initial values)