Closed tingggggg closed 2 years ago
Hi @tingggggg. deep-person-reid and deep-object-reid are incompatible at the moment, so that result is expected. Try this commit from OTE: https://github.com/openvinotoolkit/training_extensions/commit/789896de22a2c99753c31c2659ee542b2cc8588e and instructions from https://github.com/openvinotoolkit/training_extensions/tree/789896de22a2c99753c31c2659ee542b2cc8588e/pytorch_toolkit/object_reidentification to train and export your model. Note that we don't support training reid models in OTE anymore.
closing this as answered
I want to know about https://github.com/openvinotoolkit/open_model_zoo/tree/master/models/intel/person-reidentification-retail-0288 https://github.com/openvinotoolkit/open_model_zoo/tree/master/models/intel/person-reidentification-retail-0287 ... models detail for training by myself.
Detail about use which source training code, and how to convert model to openvino format(pytorch -> onnx -> FP32.xml & .bin) ...
I train model myself with source (https://github.com/KaiyangZhou/deep-person-reid)
python3 scripts/main.py --config-file configs/im_osnet_x0_25_softmax_256x128_amsgrad.yaml --transforms random_flip random_erase --root ./ test.eval_freq 10
then got the acc result after training
next step, I convert model
log/osnet_x0_25_market1501_softmax/model/model.pth.tar-180
to onnx with source code(https://github.com/openvinotoolkit/deep-object-reid) then convert to openvino format bymo.py
.After that I did
Computing CMC and mAP
with openvino inference engine (https://github.com/openvinotoolkit/deep-object-reid) but got the bad result.Did I missing any step? I want to got the correct openvino format model like model
person-reidentification-retail-0288
provided in model zoo.thanks for help~