Open iBralic opened 5 years ago
I have the exact same issue. Same configuration.
Hi tomafischer,
when I tried running this model on Intel Neural Compute Stick 2 I had issues with Tensorflow 1.13 incorrectly turning the model into the frozen representation. When I downgraded to Tensorflow 1.12 I managed to get it working. I'm not sure if this is guaranteed to help, but I would definitely try to downgrade Tensorflow and give it a try, you have nothing to lose. Good luck.
I bumped into the same problem in several different configurations: 1) Tensorflow 1.13.1 and 1.14.1 2) data_format: NCHW and NHWC 3) Model size: tiny and full 4) demo execution with Frozen graph and Checkpoint @mystic123 can you please help us out?
The owner may try to find out all lines that only contains 0, so he use np.nonzero, which makes error and causes this this value error. My classmate and i try in this way: do the sum to each line and find out the indexes of those which results are not equal to 0, and make them to a new array. Here's the code
temp = image_pred
sum_t = np.sum(temp, axis=1)
non_zero_idx = sum_t != 0
image_pred = image_pred[non_zero_idx, :]
then we can use the demo.
Modify utils.py:
for i, image_pred in enumerate(predictions):
shape = image_pred.shape
#non_zero_idxs = np.nonzero(image_pred)
#image_pred = image_pred[non_zero_idxs]
temp = image_pred
sum_t = np.sum(temp, axis=1)
non_zero_idx = sum_t != 0
image_pred = image_pred[non_zero_idx, :]
image_pred = image_pred.reshape(-1, shape[-1])
Hello everyone,
Did you guys solved the issue? I am facing a challenge in deploying my model to movidius stick and getting following error: 4056=13x13x3x8 (yolo network) ValueError: cannot reshape array of size 4056 into shape (1,1,1)
any help is appreciated. thanks
it works for me ,thks
Seems related to pull request here : https://github.com/mystic123/tensorflow-yolo-v3/pull/105
Modify utils.py:
for i, image_pred in enumerate(predictions):
shape = image_pred.shape #non_zero_idxs = np.nonzero(image_pred) #image_pred = image_pred[non_zero_idxs] temp = image_pred sum_t = np.sum(temp, axis=1) non_zero_idx = sum_t != 0 image_pred = image_pred[non_zero_idx, :] image_pred = image_pred.reshape(-1, shape[-1])
This worked for me..
I cloned your repository and tried running the demo. I got the following error:
I ran the demo on Tensorflow cpu version. I dowloaded the coco.names and yolov3.weights files. Then I ran the following commands:
python ./convert_weights.py --data_format NHWC
python ./convert_weights_pb.py --data_format NHWC
python ./demo.py --input_img ./dog.jpg --output_img ./pred_dog.jpg --frozen_model ./frozen_darknet_yolov3_model.pb --data_format NHWC
the dog image in 3rd command was the same one that was used in yolov3 tutorial on darknet yolo website found here The weights conversion went fine, and frozen model was generated fine but demo.py gave the error. I suspect this has something to do with data format and me using NHWC instead of NCHW but I'm not sure. I'd like to hear your opinion and hopefully you can run some tests to see if there is bug in implementation or did I do something wrong.
I used Tensorflow 1.13 (cpu version)
Ubuntu 16.04 (on virtual machine)
Python 3.5