(sample_info)
| 451 | return tuple(rand_elem() for _ in range(num_outputs)) |
| 452 | |
| 453 | def sample_cb_source(sample_info): |
| 454 | def rand_sample(): |
| 455 | return np.float32(np_rng.uniform(-1, 1, shape=(10, 100, 3))) |
| 456 | |
| 457 | return rand_tuple(rand_sample) |
| 458 | |
| 459 | def batch_cb_source(): |
| 460 | return rand_tuple(rand_batch) |
nothing calls this directly
no test coverage detected