You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 461 B

12345678910111213141516171819202122232425
  1. from .cache import Cache, abl_cache
  2. from .logger import ABLLogger, print_log
  3. from .utils import (
  4. confidence_dist,
  5. avg_confidence_dist,
  6. flatten,
  7. hamming_dist,
  8. reform_list,
  9. to_hashable,
  10. tab_data_to_tuple,
  11. )
  12. __all__ = [
  13. "Cache",
  14. "ABLLogger",
  15. "print_log",
  16. "confidence_dist",
  17. "avg_confidence_dist",
  18. "flatten",
  19. "hamming_dist",
  20. "reform_list",
  21. "to_hashable",
  22. "abl_cache",
  23. "tab_data_to_tuple",
  24. ]

An efficient Python toolkit for Abductive Learning (ABL), a novel paradigm that integrates machine learning and logical reasoning in a unified framework.