Charles Hill
Charles Hill
Version & copy-pastable script > Version: > ```python > from importlib.metadata import version > import ConfigSpace > version("ConfigSpace") > # '0.7.1' > ConfigSpace.__version__ > # '0.6.1' > ``` > Copy-pastable...
The docs explicitly call out a [Drop-in API](https://pysimdjson.tkte.ch/dropin.html) which will "just work". This module covers `json.{load,loads,dump,dumps}`, where `{dump,dumps}` are aliased to the built-in module. I propose adding an alias to...
### Motivation I would like to use Optuna w/ the PytorchLightningPruningCallback in a code-base with a pre-2.0 version of Pytorch Lightning. As it stands, I need to vendor the callback...