visual-layer / fastdup

fastdup is a powerful free tool designed to rapidly extract valuable insights from your image & video datasets. Assisting you to increase your dataset images & labels quality and reduce your data operations costs at an unparalleled scale.
Other
1.54k stars 74 forks source link

[Bug]: When running with bboxes, fastdup loads the full images' statistics #193

Closed Tompil3r closed 1 year ago

Tompil3r commented 1 year ago

What happened?

When running with bboxes, fastdup loads the full images' statistics by default, you need to specify load_crops=False to load the bboxes stats. fix: replace the load_crops argument with **kwargs and inside the code, use: from fastdup.definitions import BBOX load_crops = kwargs.get('load_crops', self._dtype == BBOX)

What did you expect to see?

No response

What version of fastdup were you runnning on?

0.927

What version of Python were you running on?

Python 3.10

Operating System

Ubuntu 20

Reproduction steps

No response

Relevant log output

No response

Attach a screenshot [Optional]

No response

Contact Details [Optional]

No response

dbickson commented 1 year ago

Fixed in 1.3