## Context - As of now, when we run `morphoclass evaluate`, we generate a HTML report which includes various model performance metrics. - A confusion matrix is also included in this HTML report. But this confusion matrix is a PNG image: https://github.com/BlueBrain/morphoclass/blob/8c60e050a39eee50aecf2eed5333eee61dd85e56/src/morphoclass/console/evaluate.py#L108-L125  - This is inconvenient, because we may need to access programmatically the values in these confusion matrices later on. ## Actions - [ ] Replace the PNG image with the confusion matrix by a HTML `<table>` element.
Context
As of now, when we run
morphoclass evaluate, we generate a HTML report which includes various model performance metrics.A confusion matrix is also included in this HTML report. But this confusion matrix is a PNG image:
morphoclass/src/morphoclass/console/evaluate.py
Lines 108 to 125 in 8c60e05
This is inconvenient, because we may need to access programmatically the values in these confusion matrices later on.
Actions
<table>element.