27 lines
635 B
Python
27 lines
635 B
Python
"""Reward auto-tuning support for the local training service."""
|
|
|
|
from .schema import (
|
|
BASE_REWARD_CONFIGURATION,
|
|
PARAMETER_SPECS,
|
|
WEIGHT_SPECS,
|
|
RewardConfigError,
|
|
apply_reward_configuration,
|
|
merge_proposal,
|
|
validate_configuration,
|
|
validate_proposal,
|
|
)
|
|
from .scoring import DEFAULT_OBJECTIVE_WEIGHTS, score_evaluation
|
|
|
|
__all__ = [
|
|
"BASE_REWARD_CONFIGURATION",
|
|
"DEFAULT_OBJECTIVE_WEIGHTS",
|
|
"PARAMETER_SPECS",
|
|
"WEIGHT_SPECS",
|
|
"RewardConfigError",
|
|
"apply_reward_configuration",
|
|
"merge_proposal",
|
|
"score_evaluation",
|
|
"validate_configuration",
|
|
"validate_proposal",
|
|
]
|