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 361 B

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

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