Mauricio Villegas
Mauricio Villegas
I noticed that this is a duplicate of #20311. Even though this issue is older, there is a temporal workaround in https://github.com/Lightning-AI/pytorch-lightning/issues/20311#issuecomment-2442602029. Additional to the workaround, I created just now...
After thinking a bit I think that implementing this is not trivial. The main difficulty comes from the argument links. Regardless on how the code is changed, it should work...
I was looking into "remove the keys that correspond to link targets" from my comment above, and it seems it isn't an issue as I thought. This means that the...
Since review+merge+release can take a while, below is a temporal patch for people that don't want to wait. ```python class MyCLI(LightningCLI): def parse_arguments(self, *args, **kwargs): if hasattr(LightningCLI, "_parse_ckpt_path"): raise RuntimeError("_parse_ckpt_path...
This is not a bug. Not everything can be parsed as a subconfig. A relative path to a subconfig inside another config only works if the parser has an action...
omegaconf resolvers are able to load subconfigs? I don't see that [here](https://omegaconf.readthedocs.io/en/latest/custom_resolvers.html), but I am not an expert on that. If it is supported, then you can make jsonargparse to...
> Is there a way/plan to use resolvers like omegaconf does for this kind of situation? Now (v4.41) it is possible to register and use any omegaconf resolver, see in...
I might work on this kind human readable of views. But, it would be nice to get some feedback here. That is, to know whether contributing such a feature here...
@seperman yes I am aware of pretty as mentioned above. From what I know, the current pretty view doesn't show the context of where there are changes, which is what...
I think this would not be possible. If you run `inspect.signature(torch.argmax)` it just fails. And this wouldn't even be possible to fix in pytorch side. The problem is that `torch.argmax`...