You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wonder if you can tell us how to segment overlapping digits as showed in your file "readme.md" . I haven't found the part correspond to segmentation in your code.Can you share the relevant code? Your reply would be highly appreciated.
The text was updated successfully, but these errors were encountered:
Qinying-Liu
changed the title
implementation of the overlapping digits
more details about the segmentation
Nov 24, 2017
@canbaoburen I directly segment the input by separately reconstructing the two most likely digits, because if CapsNet works like what Hinton expects, the two longest DigitCaps Vectors will separately describe enough information about the digit, so actually the segmentation is done by the encoder, the encoder will separately describe two digit by its dynamic routing. this is why the paper said CapsNet will fail when there are two handwritten digits with same number, we only have one DigitCaps Vector for each number, the routing will fail, their information will crowd together.
in my code, i directly select the two DigitCaps vectors according to the label, because if the accuray is high enough, the two most likely number predicted by CapsNet will be nearly the same as label.
I wonder if you can tell us how to segment overlapping digits as showed in your file "readme.md" . I haven't found the part correspond to segmentation in your code.Can you share the relevant code? Your reply would be highly appreciated.
The text was updated successfully, but these errors were encountered: