Allen Goodman

Results 27 comments of Allen Goodman

Hi, @HuangBo-Terraloupe! We were missing a few pieces. https://github.com/broadinstitute/keras-rcnn/issues/2#issuecomment-311130295 If you're interested in contributing, let me know and I can help steer you in the right direction. đź‘Ť

Hi, @sbordt! Thanks for the report. Are you running from source?

> As far as I can tell, it does not generate enough positive examples during training, where every Anchor that has a IoU with a ground-truth bounding box of over...

@JihongJu I agree. It’ll also save us some money. Especially when providing COCO and VOC (I’m working on a VOC dataset this weekend).

An exception should be thrown (or warning should be returned) if the generator encounters a category that isn’t a member of the categories dictionary. What do you think?

@jhung0 I looked into this yesterday and couldn't reproduce. When I added a non-existent category the ObjectDetectionGenerator threw a missing key exception. Would you mind posting an example?

Here’s my current thinking: ```JSON { "pathname": "image.png", "objects": [ { "class": "foo", "mask": "mask.png", "x_maximum": 1, "x_minimum": 1, "y_maximum": 1, "y_minimum": 1 } ] } ``` I like this...