(self)
| 791 | """Implements dynamic temperature scaling based on input characteristics""" |
| 792 | |
| 793 | def __init__(self): |
| 794 | self.token_entropy_cache = {} |
| 795 | |
| 796 | def _compute_token_entropy(self, tokens: List[int]) -> float: |
| 797 | """Compute token distribution entropy""" |
nothing calls this directly
no outgoing calls
no test coverage detected