Frederik Schubert

Results 16 issues of Frederik Schubert

The wrapping of the GET response in a `data` object forces the user of this lib to perform the same wrapping in his/her backend. This is sometimes not possible. Would...

Did you find out how the positions of the sprites are encoded? For example in Asteroids, I want to find the asteroid or the player given its x-y-coordinate in the...

This PR adds type annotations to `coax`. Closes https://github.com/coax-dev/coax/issues/13

This issue tracks the progress of adding type annotations to `coax`. - [ ] `_core` - [ ] `experience_replay` - [ ] `model_updaters` - [ ] `policy_objectives` - [ ]...

enhancement

This issue tracks the progress of converting the [numpy style](https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard) docstrings to the more concise [Google style](https://google.github.io/styleguide/pyguide.html#381-docstrings). - [ ] `_core` - [ ] `experience_replay` - [ ] `model_updaters` -...

enhancement

This PR is a rework of https://github.com/coax-dev/coax/pull/26 and adds an example for using `SAC` on the `Walker.walk` task from the DeepMind Control Suite. Depends on https://github.com/coax-dev/coax/pull/27 and https://github.com/coax-dev/coax/pull/28

This PR updates the requirements, wrappers and examples to the new API introduced by `gym==0.26.0`. Depends on https://github.com/coax-dev/coax/pull/27

This PR resolves some warnings connected to deprecations in the Jax API.

I suppose that this could be implemented using the following `clone` function in the `updatePrototype` method. This was taken from [here](https://stackoverflow.com/questions/728360/most-elegant-way-to-clone-a-javascript-object). ``` javascript function clone(obj) { var copy; // Handle...

Right now the hot loading works by (re)loading the app's root component using the `DynamicComponentLoader`, i.e. reinitializing the whole application every time a component/template/style is updated. This could become a...

enhancement