-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Converting to tf-coreml #19
Comments
I have ended with layers after I can't figure out how to get tensor names in tensorboard, so I have added print to get tensor names and the run
Here in the code: FaceBoxes-tensorflow/src/detector.py Line 284 in 545ec4f
For 256x256 input image shapes of output tensors are:
|
I'm trying to find out endpoints of model like is done here:
https://github.com/tf-coreml/tf-coreml/blob/master/examples/ssd_example.ipynb
Cause using default input/output node names produce error:
On graph last block before
nms
ispreprocessing
, but I'm not sure what isoutput_tensor_names
should be used.I have tried to print node dimensions:
Output:
But I can't find out any meaningfull node name:
These looks like bboxes:
Is it true that for 256x256 image we have 1364 bboxes?
With same approach I found node:
But not sure why it have shape
[None, None, 2]
?Also here is
postprocessing
scope:FaceBoxes-tensorflow/src/detector.py
Line 70 in 545ec4f
It should have output boxes with
[batch_size, num_anchors, 4]
shape and scores with[batch_size, num_anchors]
shape.The text was updated successfully, but these errors were encountered: