We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am looking at the documentation here:
https://petastorm.readthedocs.io/en/latest/api.html under make_batch_reader it mentions that there is a parameter seed
make_batch_reader
seed
I set this is my code:
with peta_conv_train_df.make_torch_dataloader(transform_spec=transform_func, num_epochs=1, batch_size=test_batch_size, cur_shard = 1, shard_count = 2, seed=10, shard_seed=123, reader_pool_type = pool_type) as reader:
but I get:
TypeError: make_batch_reader() got an unexpected keyword argument 'seed'
It seems to exist in the source code though....
Also what is the difference between seed and shard_seed
shard_seed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am looking at the documentation here:
https://petastorm.readthedocs.io/en/latest/api.html under
make_batch_reader
it mentions that there is a parameterseed
I set this is my code:
but I get:
It seems to exist in the source code though....
Also what is the difference between
seed
andshard_seed
The text was updated successfully, but these errors were encountered: