-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
does anyone know how to fix loading size #3601
Comments
Do you mean, you have created a task with many segment jobs and the uploaded images are large in size. And when opening a job it downloads all the images of a task even though you have opened only the first job? |
Yes, I created a task with 1 images per job, but when I opened a single job it loaded all images. |
Yes I confirmed it. When opening any one job, it calls task/id/data with params type=chunk and quality=compressed which returns a zip file with all the images of the task. And it is cached for future requests of job images of the task. There should be option for the user to set type=frame to get images one by one and not in chunk. And also the chunk should be generated job wise not task wise. |
Yes, at least it should only loads images in the job, instead of the whole task, btw who is this? |
Hi, it's depends on chunk size option: https://openvinotoolkit.github.io/cvat/docs/manual/basics/creating_an_annotation_task/#chunk-size |
So if I set the chunk size as 1, it will load per frame at a single time? |
Yes, it is expected. |
It should load images only for the job. I agree. We will fix that in v2.x with updated REST API. |
Fixed in #8272 |
I deployed CVAT on my personal server, i realized it will load all images even I split them to multiple jobs, it caused loading very slowly, so where should I change the loading size to only 1 image?
The text was updated successfully, but these errors were encountered: