cleanlab / cleanvision

Automatically find issues in image datasets and practice data-centric computer vision.
https://cleanvision.readthedocs.io/
GNU Affero General Public License v3.0
1.03k stars 70 forks source link

How to get issue list #140

Closed herbiezhao closed 1 year ago

herbiezhao commented 1 year ago

how to get issue list, so I can delete issue images

jwmueller commented 1 year ago

You can simply print out: imagelab.issues to get a DataFrame of all the issues detected in each image, as well as quality scores for their severity in each image. You can also filter this DataFrame for only a particular type of issue (where the corresponding Boolean column takes value True).

See our tutorial here:

https://github.com/cleanlab/cleanvision-examples/blob/main/tutorial.ipynb

herbiezhao commented 1 year ago

got it, thanks