cleanlab--cleanlab
098bb4b49b
# 0.1.0 - Release of confident learning paper based on this version of cleanlab: https://arxiv.org/pdf/1911.00068.pdf # - Documentation increase # - Add examples to find label errors in mnist, cifar, imagenet # - re-organized examples and added readme.
53 行
2.3 KiB
Python
53 行
2.3 KiB
Python
__version__ = '0.1.0'
|
|
|
|
# 0.1.0 - Release of confident learning paper based on this version of cleanlab: https://arxiv.org/pdf/1911.00068.pdf
|
|
# - Documentation increase
|
|
# - Add examples to find label errors in mnist, cifar, imagenet
|
|
# - re-organized examples and added readme.
|
|
|
|
# 0.0.14 - Major bug fix in classification. Unused param broke code.
|
|
|
|
# 0.0.13 - Major bug fix in finding label errors.
|
|
# - Fixed an important bug that broke finding label errors correctly.
|
|
# - Added baseline methods for finding label errors and estimating joint
|
|
# - Increased testing
|
|
# - Simplified logic
|
|
|
|
# 0.0.12 - Minor changes.
|
|
# - Added support and testing for sparse matrices scipy.sparse.csr_matrix
|
|
# - Dropped integrated dependency and support on fasttext. Use fasttext at your own risk.
|
|
# - Added testing and dropping fasttext bumped testing code coverage up to 96%.
|
|
# - Remove all ipynb artifacts of the form # In [ ].
|
|
|
|
# 0.0.11 - New logo! Improved README.
|
|
|
|
# 0.0.10 - Improved documentation, code formatting, README, and testing coverage.
|
|
|
|
# 0.0.9 - Multiple major changes
|
|
# - Important: refactored all confident joint methods and parameters
|
|
# - Numerous important bug fixes
|
|
# - Added multi_label support for labels (list of lists)
|
|
# - Added automated ordering of label errors
|
|
# - Added automatic calibration of the confident joint
|
|
# - Version 0.0.8 is deprecated. Use this version going forward.
|
|
|
|
# 0.0.8 - Multiple major changes
|
|
# - Finding label errors is now fully parallelized.
|
|
# - prune_count_method parameter has been removed.
|
|
# - estimate_confident_joint_from_probabilities now automatically calibrates confident joint to be a true joint estimate.
|
|
# - Confident joint algorithm changed! When an example is found confidently as 2+ labels, choose class with max probability.
|
|
|
|
# 0.0.7 - Massive speed increases across the board. Estimating confident joint now nearly instant. NO major API changes.
|
|
|
|
# 0.0.6 - NO API changes. README updates. Examples added. Tutorials added.
|
|
|
|
# 0.0.5 - Numerous small bug fixes, but not major API changes. 100% testing code coverage.
|
|
|
|
# 0.0.4 - FIRST CROSS-PLATFORM WORKING VERSION OF CLEANLAB. Adding test support.
|
|
|
|
# 0.0.3 - Adding working logo to README, pypi working
|
|
|
|
# 0.0.2 - Added logo to README, but link does not load on pypi
|
|
|
|
# 0.0.1 - initial commit
|