We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94761fb commit af379d8Copy full SHA for af379d8
tests/test_loader.py
@@ -74,7 +74,7 @@ def test_share_memory_shim():
74
memory_pool_block_count=num_worker,
75
)
76
with load_with_workers(loader, range(n), num_worker) as generator:
77
- for x, y in generator:
+ for x, y in tqdm.tqdm(generator):
78
assert x.numpy().shape == data_size
79
assert y.numpy().shape == label_size
80
count += 1
0 commit comments