DeepLabv3+ xception65_initialize weight, not compatible with paddlepaddle v1.1 or v1.2
Created by: tycallen
env:
CUDA Capability: 61, Driver Version: 9.1, Runtime Version: 9.0 device: 0, cuDNN Version: 7.0.
when load this weight: http://paddlemodels.cdn.bcebos.com/deeplab/deeplabv3plus_xception65_initialize.tar.gz
code:
fluid.io.load_params( exe, dirname="", filename=args.init_weights_path, main_program=tp)
got error:
load from: init_weight Traceback (most recent call last): File "./train.py", line 135, in <module> load_model() File "./train.py", line 44, in load_model exe, dirname="", filename=args.init_weights_path, main_program=tp) File "/usr/local/lib/python2.7/dist-packages/paddle/fluid/io.py", line 487, in load_params filename=filename) File "/usr/local/lib/python2.7/dist-packages/paddle/fluid/io.py", line 395, in load_vars filename=filename) File "/usr/local/lib/python2.7/dist-packages/paddle/fluid/io.py", line 436, in load_vars executor.run(load_prog) File "/usr/local/lib/python2.7/dist-packages/paddle/fluid/executor.py", line 472, in run self.executor.run(program.desc, scope, 0, True, True) paddle.fluid.core.EnforceNotMet: tensor version 91 is not supported. at [/paddle/paddle/fluid/framework/lod_tensor.cc:284] PaddlePaddle Call Stacks: 0 0x7f777148be86p paddle::platform::EnforceNotMet::EnforceNotMet(std::__exception_ptr::exception_ptr, char const*, int) + 486 1 0x7f7772ae5c16p paddle::framework::DeserializeFromStream(std::istream&, paddle::framework::LoDTensor*, paddle::platform::DeviceContext const&) + 646 2 0x7f7771e9b6e2p paddle::operators::LoadCombineOp::RunImpl(paddle::framework::Scope const&, boost::variant<paddle::platform::CUDAPlace, paddle::platform::CPUPlace, paddle::platform::CUDAPinnedPlace, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_> const&) const + 722 3 0x7f7772c8ec2fp paddle::framework::OperatorBase::Run(paddle::framework::Scope const&, boost::variant<paddle::platform::CUDAPlace, paddle::platform::CPUPlace, paddle::platform::CUDAPinnedPlace, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_, boost::detail::variant::void_> const&) + 463 4 0x7f7771562b53p paddle::framework::Executor::RunPreparedContext(paddle::framework::ExecutorPrepareContext*, paddle::framework::Scope*, bool, bool, bool) + 227 5 0x7f7771563580p paddle::framework::Executor::Run(paddle::framework::ProgramDesc const&, paddle::framework::Scope*, int, bool, bool) + 128 6 0x7f7771477d3bp 7 0x7f77714b3deep 8 0x4c5326p PyEval_EvalFrameEx + 37958 9 0x4b9b66p PyEval_EvalCodeEx + 774 10 0x4c17c6p PyEval_EvalFrameEx + 22758 11 0x4b9b66p PyEval_EvalCodeEx + 774 12 0x4c17c6p PyEval_EvalFrameEx + 22758 13 0x4b9b66p PyEval_EvalCodeEx + 774 14 0x4c17c6p PyEval_EvalFrameEx + 22758 15 0x4b9b66p PyEval_EvalCodeEx + 774 16 0x4c17c6p PyEval_EvalFrameEx + 22758 17 0x4b9b66p PyEval_EvalCodeEx + 774 18 0x4c1f56p PyEval_EvalFrameEx + 24694 19 0x4b9b66p PyEval_EvalCodeEx + 774 20 0x4eb69fp 21 0x4e58f2p PyRun_FileExFlags + 130 22 0x4e41a6p PyRun_SimpleFileExFlags + 390 23 0x4938cep Py_Main + 1358 24 0x7f7815688830p __libc_start_main + 240 25 0x493299p _start + 41
in v1.2: error is tensor version 91 is not supported
in v1.1: error is tensor version 8 is not supported
Which version these weight belongs to? Or where I can get weight compatible with v1.2