resolver
as_tuple(*args)
¶
Resolves a list of arguments to a tuple.
Source code in quadra/utils/resolver.py
34 35 36 |
|
multirun_subdir_beautify(subdir)
¶
Change the subdir name to be more readable and usable, this function will replace / with | to avoid creating undesired subdirectories and remove the left part of the equals sign to avoid having too long names.
Parameters:
-
subdir
(
str
) –The subdir name.
Returns:
-
str
–The beautified subdir name.
Examples:
>>> multirun_subdir_beautify("experiment=pippo/anomaly/padim,trainer.batch_size=32")
"pippo|anomaly|padim,32"
Source code in quadra/utils/resolver.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|
register_resolvers()
¶
Register custom resolver.
Source code in quadra/utils/resolver.py
39 40 41 42 |
|