Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
floriankrb committed Nov 30, 2023
1 parent a2122bc commit f253363
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions scripts/speed-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,13 @@ def main():
"path",
help="Path to the dataset, use s3:// for S3 storage, http:// for HTTP storage, and /path/to/dataset for local storage",
)

args = parser.parse_args()

ds = open_dataset(args.path)

for i in tqdm(ds, total=len(ds), smoothing=0):
pass
args = parser.parse_args()

ds = open_dataset(args.path)

for i in tqdm(ds, total=len(ds), smoothing=0):
pass


if __name__ == "__main__":
Expand Down

0 comments on commit f253363

Please sign in to comment.