Thilo von Neumann
Thilo von Neumann
Hey @cwitkowitz! Thanks for bringing this up! I remember that this issue, or at least something related to periods in experiment or config names, came already up some time ago...
It works for me: ``` !pip show ipykernel Name: ipykernel Version: 6.21.0 [...] from sacred.dependencies import gather_sources_and_dependencies gather_sources_and_dependencies(globals(), save_git_info=True) (None, set(), {, , }) ``` Are there other packages /...
Hi @gkanwar! I'm happy to accept this feature! But the default behavior shouldn't change so that we don't break other people's code. I prefer a flag added to the `MongoObserver`...
> At a much slower rate, artifacts can be checkpointed to distinct names to preserve history with much less disk usage. With the current version of the PR this means...
> I'm hesitant to add such an automatic timed backup feature, since for example users may want to organize these files differently. In our case, it's checkpointing based on gradient...
This part of sacred seems to be a complete mess. Different CLI options use different naming conventions (`_` or `-`). At least the documentation is correct for most of them...
There is a check in the `CLIOption` that validates the option format: `re.match(r"--[\w-]+\w$", long_flag)`. It is probably intended that the option only contains letters and `-`. But, `\w` also matches...
There are also many other mistakes in the CLI option doc, e.g., the examples for `print-config` use `print_config` (which I'm sure was correct at some point).
Hey! What does your config look like?
Hey @Wznnnnn! I just copied your config and added a simple main function. It works for me, I don't see the error. Can you provide a smaller example that reproduces...