I previously stored an MPS (from v0.6.23 of the ITensors.jl package) in a JLD2 file. However, after updating to version 0.7, I’m unable to load it properly since the current type should be ITensorMPS.MPS.
My loading approach is as follows:
using JLD2, ITensors, ITensorMPS
path = "xxx.jld2"
jldopen(path, "r") do file
ψ = file["ψ"]
end
Has anyone encountered a similar issue? How can I reconcile this problem and load the MPS correctly in the updated version?