File size: 306 Bytes
c289d87 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from __future__ import annotations
from dataclasses import dataclass
@dataclass
class PrioritizationPolicy:
utility_weight: float = 0.55
uncertainty_weight: float = 0.2
diversity_weight: float = 0.15
cluster_bonus_weight: float = 0.1
conservative_deprioritize_quantile: float = 0.15
|