Martin Schuck
Martin Schuck
# Description The gymnasium API allows users to seed the environment on each reset to yield reproducible results. Running the environment with the same seed should always give the exact...
**Describe the bug** The gymnasium API allows users to seed the environment on each reset to yield reproducible results. Running the environment with the same seed should always give the...
# Description ## Motivation Recently, environments implemented in frameworks such as `torch` and `jax` have gained importance as they provide a convenient way to run parallelized environments on GPUs and...
Refactor `RigidTransform` into a pure Python class with a cython backend for `numpy` arrays. The previous implementation in `_rigid_transform.pyx` has now been split into `_rigid_transform.py` and the functional-style cython backend...
## General overview This PR adds array API support for the `scipy.spatial.transform` module as a step towards #18867. It allows users to create objects from the module with arrays from...
### Description Running an SVD on a matrix full of NaNs is expected to return NaNs in U, S and Vt, but only S consistently propagates NaNs. When running an...
### Proposal With increasing maturity of the Array API in Python, we could think about making gymnasium truly framework agnostic. The new `ArrayConversion` wrappers give a rough idea of what...