Olivier Delalleau

Results 13 issues of Olivier Delalleau

**Is your feature request related to a problem? Please describe.** Currently OmegaConf accepts the following string assignment: ```python @dataclass class Foo: x: int = 10 cfg: Foo = OmegaConf.structured(Foo) cfg.x...

priority_low

**Describe the bug** If a `DictConfig` is using non-string keys, interpolations can't access them: ```python cfg = OmegaConf.create({0: 0, 1: "${0}"}) cfg[1] ``` ``` InterpolationKeyError: Interpolation key '0' not found...

bug
priority_low

**Is your feature request related to a problem? Please describe.** It is a bit annoying that the following code crashes: ```python @dataclass class Config: x: float = 0 cfg =...

enhancement
priority_low

**Is your feature request related to a problem? Please describe.** Currently, resolvers are responsible for validating their inputs, which can be cumbersome. **Describe the solution you'd like** Add automatic validation...

enhancement
wishlist
priority_low

This is to be done for OmegaConf 2.2. See deprecation plan from https://github.com/omry/omegaconf/pull/321#discussion_r513628009 for details Before closing this issue, also add an issue to delete both functions in 2.3

priority_low

**Is your feature request related to a problem? Please describe.** I have a use case where I want to sample many different configs from a "template" config where some values...

I guess it's not currently possible (at least I haven't found how), but I think it would be a useful feature: make it possible to map a physical button to...

Fixes #1112 Fixes #1081 This is a draft PR for several reasons: 1. It needs tests + news fragment 2. It is built on top of #1109 that needs to...

To be consistent with `dict` behavior in Python 3.9+ and simplify the syntax, it would be nice to be able to use `cfg1 | cfg2` as an alternative to `OmegaConf.merge(cfg1,...

enhancement
dictconfig

# What does this PR do ? Fixes the losses of several Megatron models, that were incorrect for `micro_batch_size` > 1 **Collection**: nlp, multimodal # Changelog - Fix losses of...

NLP