Cannot load pytorch1.7 model in pytorch1.6

PyTorch is backwards compatible (unless deprecation warning indicate otherwise), which means you should be able older models (e.g. stored in 1.6) in newer PyTorch versions (e.g. 1.7). However, it’s not forward compatible, so you would need to update your PyTorch version.

1 Like