Michael Smith
Michael Smith
Read `click` lib page on `options`, and it states that if no `type` is provided it users the `type` of the `default`. ``` @click.option('--source', default=False, help="Try to find cycles in...
@lukaszkn I started poking around, and that's a great question. I haven't been able to find a specific `window_size` setting explicit or hidden as a default. I'll keep poking around...
@lukaszkn I think you are correct: Check out the simpler code in this project: https://github.com/AminHP/gym-anytrading `window_size` is user defined and passed into `__init__()`, then added to `self.shape` in and passed...
@reasondk Are you seeing that message as part of `PyCharms` inspections; b/c that's where I'm seeing it. It's not "Callable" because the argument `BaseRLModel` is passed in as a "Class"...
I've been heavily using `RTrader` for weeks now. The essences of what you do is: optimize, train, test, rinse and repeat. Tips: ----- - Read the README and the recommend...
@xsa-dev Your version of `Tensorflow` is newer than RLTrader is expecting. `Tensorflow` stopped using "contrib". I had to lower my version and `tensorflow==1.15.0` is working without issue.
@soundmartell Can you provide a stacktrace so we can see where and when the exception happens? `contextlib` module is just a generic module for handling the Python context manager: https://docs.python.org/3/library/contextlib.html...
Based on the exception `Exception ignored from cffi callback ext_cpSpaceDebugDrawPolygonimpl`, looks like the `keyboardInterrupt` may be ignored on purpose in the underlying C libs. Maybe the interrupt can be caught...