__init__.py 588 B

1234567891011121314151617181920
  1. """Demand-pool scoring helpers shared by agents and scheduler jobs."""
  2. from supply_infra.scoring.posterior import (
  3. POSTERIOR_EFFECT_ACCEPTABLE_FLOOR,
  4. classify_posterior_effect,
  5. format_posterior_dim_with_count,
  6. format_posterior_pair,
  7. format_posterior_value,
  8. )
  9. from supply_infra.scoring.ranking import rank_to_scores, rank_with_scores
  10. __all__ = [
  11. "POSTERIOR_EFFECT_ACCEPTABLE_FLOOR",
  12. "classify_posterior_effect",
  13. "format_posterior_dim_with_count",
  14. "format_posterior_pair",
  15. "format_posterior_value",
  16. "rank_to_scores",
  17. "rank_with_scores",
  18. ]