HyperPyYAML icon indicating copy to clipboard operation
HyperPyYAML copied to clipboard

Extensions to YAML syntax for better python interaction

Results 7 HyperPyYAML issues
Sort by recently updated
recently updated
newest added

Hello, I have the following code (a MWE - minimum working example), where I want to dump a config with a `!new` instatiation. ```python yaml_string = """ foo: !new:collections.Counter a:...

The include: YAML extension doesn't seem to be documented in the README.

Right now, the `!include` tag first resolves references in the included document (turning objects into anchors like `*id001`) the names of which collide with any references in the original document.

bug

As seen in SpeechBrain CI. Still have quite some time until 3.14 so it's not very high priority. - `core.py:718: DeprecationWarning: ast.Num is deprecated and will be removed in Python...

Hi, I want to use the class defined in yaml file to get a method associated with it. Intuitively, it's something like - `!apply: !ref ` But since input to...

This is a sort of feature request, but also my way of showing I'm considering developing this in case other people already have or could find it useful. I'm currently...

Context: I want to instantiate a SpeechBrain pretrained model derivative. This should be possible according to > Overrides[](https://speechbrain.readthedocs.io/en/latest/tutorials/basics/hyperpyyaml.html#overrides) > In order to run experiments with various values for a hyperparameter,...