QUICK LINKS

GETTING STARTED

COMPONENTS

TUTORIALS

View model details

Get details of Active model:


modelinfo = project.model_summary()

To fetch Model Performance of Active Model, use the following function:


project.get_model_performance()

To remove a model:


project.remove_model('model_name')

Get current data config details. If you don't modify the data settings, any future fine-tuning will use the same data settings


modelinfo.data_config()

Activate/Deactivate

Activate any model by simply passing the model name. The active model will be used to run any inferencing - both in API, GUI or through batch files.


project.activate_model('model_name')  # make any model active