David Morton
David Morton
This was also a fix for me running on a home machine with ubuntu 16.04 and an nvidia GeForce GTX 1060 6GB.
It looks like the Resize function doesn't allow you to change the aspect ratio though: https://github.com/Paperspace/DataAugmentationForObjectDetection/blame/master/data_aug/data_aug.py#L675 It looks like it takes a tuple of integers but letterbox_image is expecting a...
+1 This bit me after a couple of weeks of deploying applications to my deis cluster.
My only concern would be that you've now disallowed adding the same function as a callback more than once. Although it probably isn't a very useful thing to want to...
I have a few comments/suggestions and a proposal. First, the suggestions: - The `emit` method could just be implemented in `__call__` (then we don't have to figure out a name)....
One implementation option for this feature would be to have the decorator just decorate with the supports_callbacks decorator and register the callback, returning the supports_callbacks decorated function. I'm not sure...