Support metric and loss kwargs
Closed this issue · 3 comments
cooperlab commented
Support passing of class definitions and kwargs in configurations.
Currently, we use a mapper
argument to map strings to metrics and losses since most class instances cannot be passed to trials (non-picklable). This will be replaced with passing class definitions or callables with kwargs.
For metrics - a list of dicts as below (metrics do not contain hyperparameters and can be stored in a list)
[{“name”: str, “metric”: class/callable, “kwargs”: dict}]
For losses - a single dict (multiple losses not supported):
{“name”: str, “loss”: class/callable, “kwargs”: dict}
create-issue-branch commented
Branch issue-30-Support_metric_and_loss_kwargs created!