Meir Tseitlin
Meir Tseitlin
`all_contents()` creates a generator... Can you please give an example on how to add an item to an existing sequence, validate it and dump to yaml? Tnx
Now, I do see that default handlers are registered (in _set_error_handler_callbacks). But for some reason they never executed in my configuration
I think it is related to the fact that I am using Restplus Api object with Flask Blueprint, so errorhandler should be used with `api` object and not with `app`...
Eventually, I recreated all the error handlers manually to solve it: ``` @api.errorhandler(jwt_extended_exception.NoAuthorizationError) def handle_auth_error(e): return {'message': str(e)}, 401 @api.errorhandler(jwt_extended_exception.CSRFError) def handle_auth_error(e): return {'message': str(e)}, 401 @api.errorhandler(jwt_exception.ExpiredSignatureError) def handle_expired_error(e): return...
I tried it - its not working On Oct 10, 2017 6:22 PM, "Landon" wrote: > I've thought of a better way to solve this. It is very much a...
@sctse999 , @DocGarbanzo, I am not yet fully baked, but how about the following. * 3rd party parts will be installed as standard Python packages `donkeycar` package will hold the...
> I get > 45 Hz easily. I am not sure where the bottlenecks are in your case. @tikurahul - What is your setup and TF version?
I am working on a generic multi-threaded solution (please see -https://github.com/cloud-rocket/donkeycar/blob/add-multithreaded-keras-pilot/donkeycar/parts/keras.py) But for some reason I only experience performance degradation (on both h5 and tflite options) - still not yet...
@mosquito, what do you think? I haven't added anything related to py35/py36 errors
@mosquito, > @cloud-rocket please rebase against the master branch done