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
For parquet file workloads we can determine the number of records from the actual parquet files, it is not necessary to manually specify it as we currently do:
Similarly for any workload which limits the count such as *-test variants, we also know the limit:
classMnistTest(MnistBase):
"""Reduced, "test" variant of mnist; with 1% of the full dataset (600 passages and 20 queries)."""def__init__(self, name: str, cache_dir: str):
super().__init__(name, "mnist", cache_dir=cache_dir, limit=600, query_limit=20)
@propertydefrecord_count(self) ->int:
return600
The text was updated successfully, but these errors were encountered:
For parquet file workloads we can determine the number of records from the actual parquet files, it is not necessary to manually specify it as we currently do:
Similarly for any workload which limits the count such as
*-test
variants, we also know the limit:The text was updated successfully, but these errors were encountered: