Context that the argument provider callback receives when prompted for parameter
| 30 | |
| 31 | @dataclass |
| 32 | class SampleDesc: |
| 33 | """Context that the argument provider callback receives when prompted for parameter""" |
| 34 | |
| 35 | rng: random.Random |
| 36 | frame_idx: int |
| 37 | sample_idx: int |
| 38 | batch_idx: int |
| 39 | sample: np.ndarray |
| 40 | |
| 41 | |
| 42 | @dataclass |
no outgoing calls