This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
Reduce memory footprint for captures.py using Dask Bag #91
Labels
enhancement
New feature or request
Why you need this feature:
The current implementation of
captures.py
loads all annotations for all captures frames into memory. This can potentially create memory hog as annotations can greatly increase memory usage.Describe the solution you'd like:
Explore using Dask Bag to filter annotations that does not need to be loaded into memory. They should only be loaded when
Dataset.__getitem__()
is called to generate training examples.Anything else you would like to add:
[Miscellaneous information that will assist in solving the issue.]
The text was updated successfully, but these errors were encountered: