| 84 | |
| 85 | |
| 86 | class BalancedSampler(ContextSampler): |
| 87 | def sample(self, n) -> None: |
| 88 | """ |
| 89 | TODO: this should return approximately class-balanced samples from our fewshot examples. |
| 90 | TODO: what order should they be in? maybe random? |
| 91 | """ |
| 92 | |
| 93 | pass |
| 94 | |
| 95 | |
| 96 | class ManualSampler(ContextSampler): |
nothing calls this directly
no outgoing calls
no test coverage detected