torch.cuda.FloatTensor at version X

What does “torch.cuda.FloatTensor at version X” actually mean?? How to change the version to a different value?

These versions track how many times a Tensor has been modified inplace. The version increase every time you modify it.
You cannot change the version manually. If you see error with wrong version, you need to remove inplace operations to avoid the version to be bumped.