validator
check_all_arguments(callable_variable, configuration_arguments, argument_names)
¶
Checks if all arguments passed from configuration are valid for the target class or function.
Parameters:
-
callable_variable
–
Full module path to the target class or function.
-
configuration_arguments
–
All arguments passed from configuration.
-
argument_names
(
List[str]
) –All arguments from the target class or function.
Raises:
-
ValueError
–If the argument is not valid for the target class or function.
Source code in quadra/utils/validator.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
get_callable_arguments(full_module_path)
¶
Gets all arguments from module path.
Parameters:
-
full_module_path
(
str
) –Full module path to the target class or function.
Raises:
-
ValueError
–If the target is not a class or a function.
Returns:
Source code in quadra/utils/validator.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
validate_config(_cfg, package_name='quadra')
¶
Recursively traverse OmegaConf object and check if arguments are valid for the target class or function. If not, raise a ValueError with a suggestion for the closest match of the argument name.
Parameters:
-
_cfg
(
Union[DictConfig, ListConfig]
) –OmegaConf object
-
package_name
(
str
, default:'quadra'
) –package name to check for instantiation.
Source code in quadra/utils/validator.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
|