Martin van der Schelling

Results 36 issues of Martin van der Schelling

Currently, it is pretty complicated to use hyper-parameters in optimizers. Make this more intuitive

## The Problem While one process invokes the `store()` method and another process tries to read the `ExperimentData` object (`from_file()`), there is the possibility that when the `_Data` object invokes...

## Feature request It would be great to have a `.pop` method on the Domain object just like it is being used in lists. The `.pop` method would pop a...

## The problem At the moment, there is a numpy casting `to_numpy` method in the `_Data` class that casts to float32. This is not possible with non-numeric data, hence raising...

I'm trying to combine partial functions with `eqx.Partial` in a `jax.lax.scan`: ```python import equinox as eqx import jax def f(carry, xs, a): return carry + a, carry + a scan_fn...

question

# Code Release Week Checklist This checklist is intended to help reviewers evaluate code repositories during Code Release Week. Reviewers should go through each section and mark the corresponding checkboxes...

code release week

https://github.com/bessagroup/f3dasm/blob/80ea61b8f534e7990d21c3016d719364f2cf5fb1/src/f3dasm/_src/datagenerator.py#L180-L188

## The problem In order to keep a simple, clean API, the outcome of functions should either be handled 'in place' or create a new object. Now, some functions of...

## The problem At the moment, `hydra-core` is mandatory dependency but the package can also work without integration with `hydra`. Therefore, we should make the package not dependent on this...