You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The current examples are very limited and only show how to use disent.
Describe the solution you'd like
Add examples for the experiment/run.py and experiment/config for the new changes for milestone v0.4.0 with the experiment plugin system.
Experiment plugins & registry
Config overriding
The text was updated successfully, but these errors were encountered:
research/config/ -- extensions & overrides to the experiment config
research/code/ -- additional frameworks, datasets, metrics to add inject into disent
research/scripts/ -- entrypoints that handles launching with the plugin
To tell disent about the files, you need to set the following environment variable to an absolute path:
export DISENT_CONFIGS_PREPEND="path/to/extra/config/dir"# for the example above, this is: `<root>/research/config`
To register your files with disent from the config referenced above, you need to add the following keys to the root of your config:
experiment:
plugins:
- your_plugin.submodule.register_to_disent# for the example above, this is `research.code.register_to_disent`, which leads to `research/code/__init__.py`
Is your feature request related to a problem? Please describe.
The current examples are very limited and only show how to use
disent
.Describe the solution you'd like
Add examples for the
experiment/run.py
andexperiment/config
for the new changes for milestone v0.4.0 with the experiment plugin system.The text was updated successfully, but these errors were encountered: