keras_Realtime_Multi-Person_Pose_Estimation
keras_Realtime_Multi-Person_Pose_Estimation copied to clipboard
Error with rmpe_dataser_server command
Hi @michalfaber !
While I am trying to run the training, I am getting this error when I try the rmpe_dataset_server command. Please refer to the screenshot below for more details
It looks like your train_dataset.h5 file is invalid. Make sure that train_dataset.h5 is generated by generate_hdf5.py (not by deprecated tool rmpe_dataset_transformer).
Thanks @michalfaber , The train_dataset.h5 file was generated using the month old code of yours. Now if I try to run the same command, I get the following error:
Faced the same problem when trying to launch this in Python2. The source appears to be the different behavior of bytes
object in Python3 vs 2. In Python3 you get integers while iterating through bytes (output of struct.pack
), and in Python2 you get single byte string.
Try to run the script with Python3.
BTW, the learning itself seems to work from both of the versions.