-
Notifications
You must be signed in to change notification settings - Fork 2.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
huge memory leak while using OpenVINO with yolov3 #401
Comments
Can you provide more information about your setup, your environment, using CPU/GPU/VPU, which application(s) (in C++, in Python?), which command line parameters, running natively (Ubuntu 18.04?) or within a container? |
im using CVAT with OpenVINO 2019R3 (from the OpenVINO website). thus i believe it (CVAT) is using python. |
Can you try to run the sample "object_detection_demo_yolov3_async" (from Open-Model-Zoo, part of the OpenVINO installation), please? It allows you to specify a video file via the parameter "-i" as well. Try to use a "native" OpenVINO sample first - and later maybe file an issue at "https://github.com/opencv/cvat" ;-) |
ok. i've tried and couldn't observe a memory leak. is there an equivalent python version? |
This comment has been minimized.
This comment has been minimized.
There is a Python demo as well: |
thx. |
Under |
|
Have you installed the packages in "requirements.txt" under I don't need to specify a CPU extension... It just works for me:
And also for tiny-yolo-v3: I'm using "Python 3.5.2". I think your older version of OpenVINO still has the old CPU-extension library.... |
thx, that did the trick. i used libcpu_extension_avx2.so and the inference is running. no memory leak there so far. |
@gitunit where do people usually get the cpu extensions |
@Maioy97 open model zoo |
i have used this instructions to integrate yolov3 into OpenVINO. when im using it for inference, there is a very big memory leak which will lead to a crash after all RAM gets consumed (and all SWAP as well). therefore i never can finish processing the whole video (2 hours long). i have tested it on a machine with 32 gb RAM and appr. the same in SWAP space but due to the memory leak it gets filled up until it crashes.
The text was updated successfully, but these errors were encountered: