mirror of
https://github.com/twitter/the-algorithm-ml.git
synced 2024-12-23 14:51:49 +01:00
Removed unused parameter from the get_readers() and removed unused import LocalFileSystem
This commit is contained in:
parent
78c3235eee
commit
cb1d1190f1
@ -9,7 +9,7 @@ import functools
|
||||
import random
|
||||
from typing import Optional
|
||||
|
||||
from fsspec.implementations.local import LocalFileSystem
|
||||
from fsspec.implementations.local
|
||||
import pyarrow.dataset as pads
|
||||
import pyarrow as pa
|
||||
import pyarrow.parquet
|
||||
@ -105,7 +105,7 @@ class Dataset(torch.utils.data.IterableDataset):
|
||||
def dataloader(self, remote: bool = False):
|
||||
if not remote:
|
||||
return map(self.pa_to_batch, self.to_batches())
|
||||
readers = get_readers(2)
|
||||
readers = get_readers()
|
||||
return map(self.pa_to_batch, reader_utils.roundrobin(*readers))
|
||||
|
||||
|
||||
@ -116,7 +116,7 @@ GRPC_OPTIONS = [
|
||||
]
|
||||
|
||||
|
||||
def get_readers(num_readers_per_worker: int):
|
||||
def get_readers():
|
||||
addresses = env.get_flight_server_addresses()
|
||||
|
||||
readers = []
|
||||
|
Loading…
Reference in New Issue
Block a user