You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I call make_reader, I keep getting the following warning in each epoch. Will this be fixed in the future?
Code
from petastorm import make_reader
from petastorm.pytorch import DataLoader
reader = make_reader(
dataset_url=f"file://train.parquet",
shuffle_rows=False
)
return DataLoader(reader, batch_size=128)
Warning
/opt/conda/lib/python3.9/site-packages/petastorm/py_dict_reader_worker.py:267: FutureWarning: 'ParquetDataset.partitions' attribute is deprecated as of pyarrow 5.0.0 and will be removed in a future version. Specify 'use_legacy_dataset=False' while constructing the ParquetDataset, and then use the '.partitioning' attribute instead.
Here is my version.
pyarrow: 13.0.0
petastorm: 0.12.1
The text was updated successfully, but these errors were encountered:
When I call
make_reader
, I keep getting the following warning in each epoch. Will this be fixed in the future?Code
Warning
Here is my version.
pyarrow: 13.0.0
petastorm: 0.12.1
The text was updated successfully, but these errors were encountered: