| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2024-02-13 | 1.5 kB | |
| v0.3.6 Improved issue type odd_size, minor bug fix and version updates source code.tar.gz | 2024-02-13 | 2.1 MB | |
| v0.3.6 Improved issue type odd_size, minor bug fix and version updates source code.zip | 2024-02-13 | 2.1 MB | |
| Totals: 3 Items | 4.1 MB | 1 | |
- Odd size issue
We use the IQR method now instead of a hard threshold to detect odd sized images compared to the rest of the dataset. According to this, an image is marked as odd sized if
size > q1 + 3 * IQRorsize < q3 - 3 * IQR, where q1 and q3 are the 25th and 75th percentiles respectively. - Statistics
imagelab.info['statistics']is now updated to provide key statistics like mean, std, min, max, 25%, 50%, and 75% for all the image properties being computed while looking for issues. - Bug fix Image was being resized to zero width/height for blurry issue check, in cases where aspect ratio was unusual.
- CI pipeline Version updates for black, flake8 docs requirements and datasets library. Added cron schedule for running tests.
Related PRs
- Bumped up version to 0.3.5 by @sanjanag in https://github.com/cleanlab/cleanvision/pull/244
- HF datasets version fix by @sanjanag in https://github.com/cleanlab/cleanvision/pull/249
- Run CI pipeline on a cron schedule by @sanjanag in https://github.com/cleanlab/cleanvision/pull/248
- Added a min size of 1 to avoid zero width/length in resize by @sanjanag in https://github.com/cleanlab/cleanvision/pull/250
- Odd size revamp by @sanjanag in https://github.com/cleanlab/cleanvision/pull/247
- Links update by @sanjanag in https://github.com/cleanlab/cleanvision/pull/251
Full Changelog: https://github.com/cleanlab/cleanvision/compare/v0.3.5...v0.3.6