Model Performance

Creating a ModelPerformance object will allow you to generate performance metrics easily.

expai.ExpaiProject.get_model_performance

This method returns a ExpaiModelPerformance that enables easy explanation generation that is documented in Generate Performance Dashboard.

expai.ExpaiProject.get_model_performance(self, model_name: str = None, model_id: str = None)

Attribute

Description

Required

model_name

Exact name of the model to be analysed.

Yes, if model_id is not provided

model_id

Unique identifier of the model to be analysed.

Yes, if model_name is not provided

fairness_explainer = project.get_model_performance(model_name="Potential model")

Last updated