-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
auto-annotation fails for large videos #1224
Comments
i guess there must be some kind of memory leak happening. im currently testing with another model (SSD) which doesnt have that rapid RAM size increase |
i've just tried yolov3 auto-annotation on my local machine with 32 GB RAM, it ate all up. even the swap of 30 GB got fully occupied, so appr. 62 GB was used. there is obviously a big memory leak. edit: at this stage im considering to drop the usage of OpenVINO altogether |
i've tried the C++ sample from the ModelZoo (OpenVINO native) called "object_detection_demo_yolov3_async" and there was no memory leak observable. can i assume the interp.py is to blame? |
after testing with an empty interpreter.py script, i think we can exclude that one. so there must be inside of CVAT some major memory leak happening. |
Wondering if the use of exec means that the interp.py code or the result object (class is I thought I'd also seen references to the rq workers not cleaning up memory properly wrt auto annotation, but a quick search didn't find anything. This is the line that the interp code gets exec'd The method gets called from here: I'd probably check how the compiled interp code is getting cleaned up. I'd also check if the Result object gets cleaned up. One could probably put a print statement in a deconstructor of the class Result to see if it's getting cleaned up correctly. But those are just idle thoughts. |
@benhoff i agree, it's probably the Result object since i made a test with an empty interp.py file the memory leak was still there. |
i have identified the actual problem. it is in this line: this object grows until all frames have been processed and thus always lives in RAM. maybe one way is to write it to disk and then if finished with inference, process it in chunks. any other ideas? @bsekachev |
You're probably better off batching it in the model manager. See here: The This file might already have modifications in a different pr. nmanovic mentioned that one of the upcoming pull requests was going to break some of my past work. See here for that note: #934 (comment) It would be worth checking out what happened in #787 before you go fix the problem :) |
@benhoff i will try in the upcoming days |
i have attempted to auto-annotate a large video (2 hours with appr. 140 000 frames) with a yolov3 model (OpenVino). the first attempt just stuck and there was no progress visible in the UI even after several days. later i did docker-compose down and up again and tried several times, it always got stuck and only recently showed popups that the task failed.
after another attempt i investigated with htop how much this process occupies CPUs and RAM, there i saw that as soon as RAM is fully occupied, the auto-annotation process stops (but the actual process keeps living).
so long story short, long videos seem not to work. with shorter videos there is no issue.
The text was updated successfully, but these errors were encountered: