Skip to content

Commit

Permalink
removed cap on number of samples
Browse files Browse the repository at this point in the history
  • Loading branch information
rabah-khalek committed Aug 9, 2024
1 parent ee3e294 commit 145d5d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion giskard_vision/core/detectors/metadata_scan_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def get_df_for_scan(self, model: Any, dataset: Any, list_metadata: Sequence[str]
# TODO: make this cleaner and more efficient with batch computations
from tqdm import tqdm

for i in tqdm(range(min(200, len(dataset)))):
for i in tqdm(range(len(dataset))):
try:
metadata = dataset.get_meta(i)

Expand Down

0 comments on commit 145d5d4

Please sign in to comment.