Stas Bekman
Stas Bekman
> I think documentation is a much better way to solve this problem, especially cause the fix would make %debug not work by default, but it would only solve it...
From my experimentation it seems to be that a more precise location for it is here: https://github.com/ipython/ipython/pull/11572#issuecomment-456626444 as compared to the original PR commit. But as I said earlier someone...
One thing would be useful to rush in in the minor release, and that's an ipython magic to clear %tb, so that we don't have to make a manual assertion...
And if you're coming to this PR and realizing that the fix will take some time to be worked out, fear not! I have written a little guide to the...
> Hi, is there anything I can do to move this along? my impression is that there are other things suffering from their objects not being deleted, too (e.g. the...
Hi Fabrice, I agree that starting with interpolation support in just the yaml file would be great! For the dataclasses python code one could already use the `__post_init__` to interpolate...
Indeed, the top dataclass class will receive access to all parsed configs, so that's where we currently manipulate things.
Oddly, there is a related problem, if I have: ``` @dataclass class OptimizerParams: name: str = "AdamW" params: Dict[str, Any] = dict_field( dict( # learning rate lr=3e-4, # betas for...
Super! The foundation is awesome, @Wauplin - just needs a bit of polish on top. The other problem this tool isn't take care of is cleaning `downloads/` - I checked...
Do you want me to open an Issue here or on the datasets repo?