get_available_models()
- 1 Minute to read
get_available_models()
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
Return a dictionary with the available models to run. It is divided by model function, model type and model name.
Reference
Arguments
None
Return
Type | Description |
---|---|
Dict | Dictionary with the available models to run. It is divided by model function, model type and model name. |
Exceptions
None
See the complete list of cv exceptions.
Usage Example
>>> self.cv.get_available_models()
Output:
{"model_function1": {
"model_type1": [
"model_name1",
"model_name2"
],
"type_model2": [
"model_name1"
],
"type_model3": [
"model_name1"
]
},
"model_function2": {
"model_type1": [
"model_name1",
"model_name2"
],
"model_type2": [
"model_name1"
]
}
}
Was this article helpful?