How to ask users to confirm an item as True Positive or False Positive
I have an ML system which classifies a series of objects. These objects have a possible status X
assigned by the system.
This information is displayed on a dashboard table to users.
An example output is below:
Object | Is X? |
---|---|
A | X |
B | X |
C | |
D | X |
E |
I need users to confirm whether the classification for each object is correct (True Positive) or not (False Positive), but its not mandatory.
What would be a suitable design solution for this? They should ideally be able to do this confirmation on the table itself.