AlphonsG

Results 7 comments of AlphonsG

Hello, did you ever receive an answer?

> how to draw the matches just like done in the paper? I think I figured it out. Insert the code below in the demo.py file after this line: `X,...

Why don't you put a breakpoint after the line that prints `actual size: (512, 512, 3), target size: (512, 512)` and then step through to see where it's hanging?

If you want to use cross entropy make sure you're _not_ applying sigmoid function beforehand.

This may be a potential solution: ``` @Gooey(tabbed_groups=True, navigation='Tabbed') def main(): parser = GooeyParser() parser.add_argument('command', type=str, choices=['subcommand1', 'subcommand2']) parser.add_argument("file") # required common argument parser.add_argument('--foo', action='store_true', help='Option one') # optional common...

I have opened a PR to fix this.