Skip to content
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

Validation API core #8348

Open
wants to merge 249 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
249 commits
Select commit Hold shift + click to select a range
a6bc9e2
Add basic implementation for task creation with honeypots
zhiltsov-max Jul 9, 2024
dbb39fd
Update api schema
zhiltsov-max Jul 9, 2024
675c160
Implement job creation, add job honeypot update endpoint, refactor ta…
zhiltsov-max Jul 11, 2024
9a09510
Update chunk and manifest creation
zhiltsov-max Jul 11, 2024
011d5ca
Fix segment size application
zhiltsov-max Jul 11, 2024
19e4fb2
Fix honeypot updating in a job
zhiltsov-max Jul 15, 2024
77dea65
t
zhiltsov-max Jul 17, 2024
b32a9eb
Update frame provider and media cache
zhiltsov-max Jul 25, 2024
cb4ff93
t
zhiltsov-max Jul 25, 2024
d49233c
t
zhiltsov-max Jul 30, 2024
146a896
Support static chunk building, fix av memory leak, add caching media …
zhiltsov-max Aug 1, 2024
52d1bac
Refactor static chunk generation - extract function, revise threading
zhiltsov-max Aug 2, 2024
0c53436
Refactor and fix task chunk creation from segment chunks, any storage
zhiltsov-max Aug 2, 2024
c166123
Fix chunk number validation
zhiltsov-max Aug 5, 2024
630c97e
Enable formatting for updated components
zhiltsov-max Aug 5, 2024
8d710e7
Remove the checksum field
zhiltsov-max Aug 5, 2024
654a827
Be consistent about returned task chunk types (allow video chunks)
zhiltsov-max Aug 6, 2024
12e5f2a
Support iterator input in video chunk writing
zhiltsov-max Aug 6, 2024
a79a681
Fix type annotation
zhiltsov-max Aug 6, 2024
d5118a2
Refactor video reader memory leak fix, add to reader with manifest
zhiltsov-max Aug 6, 2024
1b429cf
Disable threading in video reading in frame provider
zhiltsov-max Aug 6, 2024
d512312
Fix keyframe search
zhiltsov-max Aug 6, 2024
167ee12
Return frames as generator in dynamic chunk creation
zhiltsov-max Aug 6, 2024
88a9cb2
Update chunk requests in UI
zhiltsov-max Aug 7, 2024
30bf8fd
Update cache indices in FrameDecoder, enable video play
zhiltsov-max Aug 7, 2024
ee3c905
Fix frame retrieval for video
zhiltsov-max Aug 7, 2024
dc03220
Fix frame reading in updated dynamic cache building
zhiltsov-max Aug 7, 2024
4bb8a74
Fix invalid frame quality
zhiltsov-max Aug 9, 2024
f7d2c4c
Fix video reading in media_extractors - exception handling, frame mis…
zhiltsov-max Aug 9, 2024
34d9ca0
Allow disabling static chunks, add seamless switching
zhiltsov-max Aug 9, 2024
8c97967
Extend code formatting
zhiltsov-max Aug 9, 2024
a0fd0ba
Rename function argument
zhiltsov-max Aug 9, 2024
c0480c9
Rename configuration parameter
zhiltsov-max Aug 9, 2024
5caf283
Add av version comment
zhiltsov-max Aug 12, 2024
efbe3a0
Refactor av video reading
zhiltsov-max Aug 12, 2024
fb1284d
Fix manifest access
zhiltsov-max Aug 12, 2024
8edcfc5
Add migration
zhiltsov-max Aug 12, 2024
51a7f83
Update downloading from cloud storage for packed data in task creation
zhiltsov-max Aug 12, 2024
5a2a746
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 12, 2024
65e4174
Update changelog
zhiltsov-max Aug 12, 2024
61f1735
Merge remote-tracking branch 'origin/zm/job-chunks' into zm/job-chunks
zhiltsov-max Aug 12, 2024
34f972f
Update migration name
zhiltsov-max Aug 12, 2024
2bb2b17
Polish some code
zhiltsov-max Aug 12, 2024
3788917
Fix frame retrieval by id
zhiltsov-max Aug 12, 2024
f695ae1
Remove extra import
zhiltsov-max Aug 12, 2024
14a9033
Fix frame access in gt jobs
zhiltsov-max Aug 12, 2024
e8bebe9
Fix frame access in export
zhiltsov-max Aug 12, 2024
bbef52f
Fix frame iteration for frame step and excluded frames, fix export in…
zhiltsov-max Aug 12, 2024
3d5bb52
Remove unused import
zhiltsov-max Aug 13, 2024
0e9c5c8
Fix error check in test
zhiltsov-max Aug 13, 2024
351bdc8
Fix cleanup in test
zhiltsov-max Aug 13, 2024
a71852c
Add handling for disabled static cache during task creation
zhiltsov-max Aug 13, 2024
d90ca0d
Refactor some code
zhiltsov-max Aug 13, 2024
03e749a
Fix downloading for cloud data in task creation
zhiltsov-max Aug 13, 2024
c0822a0
Fix preview reading for projects
zhiltsov-max Aug 13, 2024
56d413f
Fix failing sdk tests
zhiltsov-max Aug 13, 2024
48f4794
Fix other failing sdk tests
zhiltsov-max Aug 13, 2024
5c0cc1a
Improve logging for migration
zhiltsov-max Aug 14, 2024
5abd891
Fix invalid starting index
zhiltsov-max Aug 14, 2024
749b970
Fix frame reading in lambda functions
zhiltsov-max Aug 14, 2024
9105cd3
Fix unintended frame indexing changes
zhiltsov-max Aug 14, 2024
8dafcbe
Fix various indexing errors in media extractors
zhiltsov-max Aug 14, 2024
4cbf82f
Fix temp resource cleanup in server tests
zhiltsov-max Aug 14, 2024
88c34a3
Refactor some code
zhiltsov-max Aug 15, 2024
b0fd006
Remove duplicated tests
zhiltsov-max Aug 15, 2024
2eac04a
Remove extra change
zhiltsov-max Aug 15, 2024
640518c
Fix method name, remove extra method
zhiltsov-max Aug 15, 2024
3a246b3
Remove some shared code in tests, add temp data cleanup
zhiltsov-max Aug 15, 2024
a0704f4
Add checks for successful task creation in tests
zhiltsov-max Aug 15, 2024
cf026ef
Fix invalid variable access in test
zhiltsov-max Aug 15, 2024
f73cef3
Update default cache location in test checks
zhiltsov-max Aug 15, 2024
258c800
Update manifest validation logic, allow manifest input in any task da…
zhiltsov-max Aug 16, 2024
b3ae317
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 16, 2024
5e89ef4
Add task chunk caching, refactor chunk building
zhiltsov-max Aug 16, 2024
c5edcda
Refactor some code
zhiltsov-max Aug 16, 2024
7f5c722
Refactor some code
zhiltsov-max Aug 16, 2024
daf4035
Improve parameter name
zhiltsov-max Aug 16, 2024
8c1b82c
Fix function call
zhiltsov-max Aug 16, 2024
f172865
Add basic test set for meta, frames, and chunks reading in tasks
zhiltsov-max Aug 16, 2024
aacceee
Move class declaration for pylint compatibility
zhiltsov-max Aug 16, 2024
c8dbb7c
Add missing original chunk type field in job responses
zhiltsov-max Aug 16, 2024
6b9a3e9
Add tests for job data access
zhiltsov-max Aug 16, 2024
f5661e4
Update test assets
zhiltsov-max Aug 16, 2024
754757f
Clean imports
zhiltsov-max Aug 16, 2024
0c001a5
Python 3.8 compatibility
zhiltsov-max Aug 16, 2024
a9390eb
Python 3.8 compatibility
zhiltsov-max Aug 17, 2024
d2b1385
Python 3.8 compatibility
zhiltsov-max Aug 17, 2024
c9a5e31
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 19, 2024
621afa7
Add logging into shell command runs, fix invalid redis-cli invocation…
zhiltsov-max Aug 19, 2024
e40ffd1
Merge remote-tracking branch 'origin/zm/job-chunks' into zm/job-chunks
zhiltsov-max Aug 19, 2024
08c9f01
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 19, 2024
c0f0d2f
Job validations - common
zhiltsov-max Aug 19, 2024
da2d9fb
Update changelog
zhiltsov-max Aug 19, 2024
65b4591
Remove unused imports
zhiltsov-max Aug 19, 2024
c5fa228
Update test assets
zhiltsov-max Aug 19, 2024
bf09a38
Update server schema
zhiltsov-max Aug 19, 2024
abb214f
Fix formatting
zhiltsov-max Aug 20, 2024
92a19f4
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 21, 2024
441d0e7
Allow calling flushall in redis in helm tests
zhiltsov-max Aug 21, 2024
1d29c2f
Refactor field definition
zhiltsov-max Aug 21, 2024
d81e1da
Update server schema
zhiltsov-max Aug 21, 2024
0963f94
Update comment
zhiltsov-max Aug 21, 2024
0d78e63
Update redis cleanup command
zhiltsov-max Aug 21, 2024
b9ca46c
Merge branch 'develop' into zm/validation-api
zhiltsov-max Aug 21, 2024
f53948d
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 23, 2024
3ce0864
Merge branch 'develop' into zm/validation-api
zhiltsov-max Aug 23, 2024
ef0dce9
Merge branch 'zm/validation-api' into zm/validation-core
zhiltsov-max Aug 23, 2024
e69f2b7
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 23, 2024
68cb59b
Merge branch 'zm/validation-core' into zm/honeypot
zhiltsov-max Aug 23, 2024
1a9a813
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 23, 2024
3caab1b
Implement task creation with honeypot
zhiltsov-max Aug 23, 2024
de1bf68
Support task creation with GT job, add request validation
zhiltsov-max Aug 26, 2024
1c32114
Update server schema
zhiltsov-max Aug 26, 2024
ab3066a
Remove extra files
zhiltsov-max Aug 26, 2024
d3b58bc
Add support for gt job creation with new params, rename percent to share
zhiltsov-max Aug 28, 2024
bb48ae6
Refactor serializers
zhiltsov-max Aug 28, 2024
81e1692
Add more validations, rename model fields after api changes
zhiltsov-max Aug 28, 2024
f84d93f
Update api schema
zhiltsov-max Aug 28, 2024
be7ebb3
Improve validation messages, fix error
zhiltsov-max Aug 28, 2024
e4db8ad
Reuse _get
zhiltsov-max Aug 28, 2024
b1c54f9
Make get_checksum private
zhiltsov-max Aug 28, 2024
5312b00
Add get_raw_data_dirname to the Data model
zhiltsov-max Aug 28, 2024
3c117fe
Make SegmentFrameProvider available in make_frame_provider
zhiltsov-max Aug 28, 2024
98eff81
Remove extra variable
zhiltsov-max Aug 28, 2024
316ec78
Include both cases of CVAT_ALLOW_STATIC_CACHE in CI checks
zhiltsov-max Aug 28, 2024
ebed825
Merge remote-tracking branch 'origin/zm/job-chunks' into zm/job-chunks
zhiltsov-max Aug 28, 2024
92f6083
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Aug 28, 2024
2b6e987
Remove extra import
zhiltsov-max Aug 28, 2024
5986f63
Support backups
zhiltsov-max Aug 30, 2024
26ffb22
Fix restoring from backups
zhiltsov-max Sep 2, 2024
274237c
Make field optional in job update checks
zhiltsov-max Sep 2, 2024
1c36f81
Add export support
zhiltsov-max Sep 2, 2024
acc0697
Support import and export in tasks with gt pool
zhiltsov-max Sep 4, 2024
876164e
Support honeypot updates in jobs
zhiltsov-max Sep 4, 2024
915abdf
Refactor some code
zhiltsov-max Sep 4, 2024
c42f20b
Split the honeypot updating part
zhiltsov-max Sep 5, 2024
f67a1a2
Update changelog
zhiltsov-max Sep 5, 2024
d72fe85
Refactor cache keys in media cache
zhiltsov-max Sep 5, 2024
d5bfb88
Refactor selective segment chunk creation
zhiltsov-max Sep 5, 2024
c5a1197
Remove the breaking change in the chunk retrieval API, add a new inde…
zhiltsov-max Sep 6, 2024
a5cf3b7
Update UI to use the new chunk index parameter
zhiltsov-max Sep 7, 2024
069f48c
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Sep 7, 2024
cfdde3f
Update test initialization
zhiltsov-max Sep 7, 2024
843b957
Update changelog
zhiltsov-max Sep 7, 2024
feb92cd
Add backward compatibility for chunk "number" in GT jobs, remove plac…
zhiltsov-max Sep 9, 2024
2424f2b
Update UI to support job chunks with non-sequential frame ids
zhiltsov-max Sep 9, 2024
fe60bdf
Fix job frame retrieval
zhiltsov-max Sep 9, 2024
6ddb6bf
Fix 3d task chunk writing
zhiltsov-max Sep 9, 2024
4fa7b97
Fix frame retrieval in UI
zhiltsov-max Sep 10, 2024
32f1be2
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Sep 10, 2024
4ff0767
Merge branch 'zm/job-chunks' into zm/validation-core
zhiltsov-max Sep 11, 2024
39e8f65
Fix gt job segment type for honeypot gt jobs
zhiltsov-max Sep 11, 2024
1b08e22
Fix chunk availability check
zhiltsov-max Sep 11, 2024
0e95b40
Fix chunk availability check
zhiltsov-max Sep 11, 2024
21135b7
Merge remote-tracking branch 'origin/zm/job-chunks' into zm/job-chunks
zhiltsov-max Sep 11, 2024
f775dcf
Add data access tests with honeypot tasks
zhiltsov-max Sep 11, 2024
c87de20
Fix linter errors
zhiltsov-max Sep 11, 2024
b311f1e
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Sep 11, 2024
f9f5001
Add task creation tests
zhiltsov-max Sep 12, 2024
79bb1f7
Remove array comparisons
zhiltsov-max Sep 12, 2024
55a8424
Update validateFrameNumbers
zhiltsov-max Sep 12, 2024
add5ae6
Use builtins for range and binary search, convert frame step into a c…
zhiltsov-max Sep 12, 2024
643d998
Merge remote-tracking branch 'origin/zm/job-chunks' into zm/job-chunks
zhiltsov-max Sep 12, 2024
27f733a
Disallow manual validation frame selection for gt job when task is cr…
zhiltsov-max Sep 12, 2024
17cc539
Update server api descriptions
zhiltsov-max Sep 12, 2024
df90b33
Fix cached chunk indicators in frame player
zhiltsov-max Sep 12, 2024
6ccb7db
Fix chunk predecode logic
zhiltsov-max Sep 13, 2024
1fb68bc
Rename chunkNumber to chunkIndex where necessary
zhiltsov-max Sep 13, 2024
92d0c7a
Fix potential prefetch problem with reverse playback
zhiltsov-max Sep 13, 2024
67c1650
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Sep 13, 2024
62bfb45
Change the way validation layout is stored in the DB
zhiltsov-max Sep 13, 2024
03f58ed
Add tests for task creation with gt job from video, fix frames_per_jo…
zhiltsov-max Sep 13, 2024
cbd75cd
Update data migration
zhiltsov-max Sep 13, 2024
7f2e42e
Update gt job removal
zhiltsov-max Sep 13, 2024
6cc0012
Sort gt job frames regardless
zhiltsov-max Sep 13, 2024
5322e82
Add test task with honeypots
zhiltsov-max Sep 13, 2024
057bbb5
Add backup test for honeypot task
zhiltsov-max Sep 13, 2024
b9f6f8b
Fixes
zhiltsov-max Sep 13, 2024
63c15ec
Fix backup restoring for custom jobs without honeypots
zhiltsov-max Sep 14, 2024
5a7a419
Fix gt annotation copying on task annotation uploading
zhiltsov-max Sep 14, 2024
c297dac
Fix validation frames fetching on task creation
zhiltsov-max Sep 14, 2024
0313ffa
Refactor tests, add make_sdk_client function
zhiltsov-max Sep 14, 2024
814a5db
Add tests for annotation updating in honeypot tasks
zhiltsov-max Sep 14, 2024
3cdc4dc
Move env variable into docker-compose.yml
zhiltsov-max Sep 16, 2024
716042e
Merge remote-tracking branch 'origin/zm/job-chunks' into zm/job-chunks
zhiltsov-max Sep 16, 2024
19279c7
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Sep 16, 2024
edaa8d0
Add test for import and export of annotations in honeypot tasks
zhiltsov-max Sep 16, 2024
6deaf8e
Update tasks with GT jobs in tests assets
zhiltsov-max Sep 16, 2024
e6c4cdb
Fix backup restoring
zhiltsov-max Sep 16, 2024
b8a25cf
Revert unnecessary backup file copying change
zhiltsov-max Sep 16, 2024
28a4a61
Fix lambda tests, use relative ids in manual gt job creation
zhiltsov-max Sep 16, 2024
bc5ed39
Fix invalid cached chunk display in GT jobs
zhiltsov-max Sep 17, 2024
08ddd28
Fix invalid task preview generation
zhiltsov-max Sep 17, 2024
1d969bd
Refactor CS previews, context image chunk generation, media cache cre…
zhiltsov-max Sep 17, 2024
e2cba8c
Merge remote-tracking branch 'origin/zm/job-chunks' into zm/job-chunks
zhiltsov-max Sep 17, 2024
d135475
Remove extra import
zhiltsov-max Sep 17, 2024
a1638c9
Fix CS preview in response
zhiltsov-max Sep 17, 2024
fc89c01
Add reverse migration
zhiltsov-max Sep 17, 2024
f8878d0
Merge branch 'zm/job-chunks' into zm/validation-core
zhiltsov-max Sep 17, 2024
c6e65f6
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Sep 17, 2024
85a6244
Add gt job creation tests, update job tests
zhiltsov-max Sep 17, 2024
2679ff4
Update imports
zhiltsov-max Sep 17, 2024
39c8572
Python 3.8 compatibility
zhiltsov-max Sep 17, 2024
169b22c
Python 3.8 compatibility
zhiltsov-max Sep 18, 2024
ee822ac
Support mapped frames in static chunk creation
zhiltsov-max Sep 18, 2024
9f19081
Improve test task names in fixtures
zhiltsov-max Sep 18, 2024
e38f2f9
Add backward compatibility alias for the seed field in job creation
zhiltsov-max Sep 19, 2024
5986866
Restore old test
zhiltsov-max Sep 19, 2024
5bba804
Update ui
zhiltsov-max Sep 20, 2024
b16c0fa
send uploadstart/uploadfinish requests in json format
klakhov Sep 20, 2024
9bdfbaf
Fix task creation with validation params
zhiltsov-max Sep 20, 2024
2415260
Improve frame_per_job_share handling
zhiltsov-max Sep 20, 2024
be0f543
Fix allocation table building
zhiltsov-max Sep 20, 2024
6e9194e
Fix gt management values
zhiltsov-max Sep 20, 2024
118828a
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Sep 23, 2024
7308b76
Rename real_frame_id to real_frame for consistency
zhiltsov-max Sep 23, 2024
e447473
Support frame deletion in GT jobs
zhiltsov-max Sep 23, 2024
7aaccbd
Update ui support for frame removal
zhiltsov-max Sep 23, 2024
4667650
Update test assets
zhiltsov-max Sep 23, 2024
170e73b
Merge remote-tracking branch 'origin/develop' into zm/validation-core
zhiltsov-max Sep 23, 2024
dd39291
Fix linter problems
zhiltsov-max Sep 23, 2024
3eea60d
Merge branch 'develop' into zm/job-chunks
zhiltsov-max Sep 24, 2024
cc5637a
Enable job metadata updates in tasks with gt job and honeypots
zhiltsov-max Sep 24, 2024
7535d09
Fix test
zhiltsov-max Sep 24, 2024
8054be9
Merge branch 'zm/job-chunks' into zm/validation-core
zhiltsov-max Sep 25, 2024
4f5d642
Merge branch 'develop' into zm/validation-core
zhiltsov-max Sep 25, 2024
1910dcd
Add tests for gt frame exclusion
zhiltsov-max Sep 25, 2024
7be49e2
Fix test
zhiltsov-max Sep 25, 2024
8f784d9
Fix linter error
zhiltsov-max Sep 25, 2024
c1eeee2
Update changelog
zhiltsov-max Sep 27, 2024
12a3fe0
Reduce code duplication on the same check for validation mode
zhiltsov-max Sep 27, 2024
128c78a
Fix some other comments
zhiltsov-max Sep 27, 2024
cafdeec
Update tests/python/rest_api/test_jobs.py
zhiltsov-max Sep 27, 2024
89bb815
Remove extra file
zhiltsov-max Sep 27, 2024
5b39661
Merge branch 'develop' into zm/validation-core
zhiltsov-max Sep 27, 2024
8451fda
Fix invalid handling of start, stop frames and frame step in tasks wi…
zhiltsov-max Sep 30, 2024
3d9fba2
Update tests
zhiltsov-max Sep 30, 2024
4b2b2dd
Fix field access
zhiltsov-max Sep 30, 2024
2fe8fba
Merge remote-tracking branch 'origin/zm/validation-core' into zm/vali…
zhiltsov-max Sep 30, 2024
8460d5d
Extract allocation table contents building function
zhiltsov-max Sep 30, 2024
a1bb881
Fix job removal
zhiltsov-max Sep 30, 2024
a4b8a97
Fix static chunk creation
zhiltsov-max Sep 30, 2024
e9e00b0
Add more test cases
zhiltsov-max Sep 30, 2024
20d3006
Remove unused variable
zhiltsov-max Sep 30, 2024
cc00426
Make frame set check more reliable
zhiltsov-max Sep 30, 2024
b5ab1be
Make segment type check more robust
zhiltsov-max Sep 30, 2024
23bfc2c
Remove extra db call
zhiltsov-max Sep 30, 2024
d4bc318
Improve error message
zhiltsov-max Sep 30, 2024
57f1d71
Add field description in the api
zhiltsov-max Sep 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions changelog.d/20240819_210200_mzhiltso_validation_api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
### Added

- New task mode: Honeypots (GT pool)
(<https://github.com/cvat-ai/cvat/pull/8348>)
- New task creation options for quality control: Honeypots (GT pool), GT job
(<https://github.com/cvat-ai/cvat/pull/8348>)
- New GT job frame selection method: `random_per_job`,
which guarantees each job will have GT overlap
(<https://github.com/cvat-ai/cvat/pull/8348>)
- \[Server API\] POST `/jobs/`: new frame selection parameters,
which accept percentages, instead of absolute values
(<https://github.com/cvat-ai/cvat/pull/8348>)
- \[Server API\] GET `/api/tasks/{id}/` got a new `validation_mode` field,
reflecting the current validation configuration (immutable)
(<https://github.com/cvat-ai/cvat/pull/8348>)
- \[Server API\] POST `/api/tasks/{id}/data` got a new `validation_params` field,
which allows to enable `GT` and `GT_POOL` validation for a task on its creation
(<https://github.com/cvat-ai/cvat/pull/8348>)

### Changed

- \[Server API\] POST `/jobs/` `.frames` field now expects relative frame numbers
instead of absolute (source data) ones
(<https://github.com/cvat-ai/cvat/pull/8348>)
48 changes: 31 additions & 17 deletions cvat-core/src/server-proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
return new ServerError(message, 0);
}

function prepareData(details) {

Check warning on line 247 in cvat-core/src/server-proxy.ts

View workflow job for this annotation

GitHub Actions / Linter

Missing return type on function
const data = new FormData();
for (const [key, value] of Object.entries(details)) {
if (Array.isArray(value)) {
Expand Down Expand Up @@ -286,7 +286,7 @@
return requestId++;
}

async function get(url: string, requestConfig) {

Check warning on line 289 in cvat-core/src/server-proxy.ts

View workflow job for this annotation

GitHub Actions / Linter

Missing return type on function
return new Promise((resolve, reject) => {
const newRequestId = getRequestId();
requests[newRequestId] = { resolve, reject };
Expand Down Expand Up @@ -593,7 +593,7 @@
} catch (error) {
lastError = error;
if (attempt < adjustedMaxRetries) {
await new Promise((resolve) => setTimeout(resolve, adjustedCheckPeriod));
await new Promise((resolve) => { setTimeout(resolve, adjustedCheckPeriod); });
}
}
}
Expand All @@ -605,7 +605,7 @@
fetchAll: boolean,
}

export const sleep = (time: number): Promise<void> => new Promise((resolve) => setTimeout(resolve, time));
export const sleep = (time: number): Promise<void> => new Promise((resolve) => { setTimeout(resolve, time); });

const defaultRequestConfig = {
fetchAll: false,
Expand Down Expand Up @@ -819,7 +819,7 @@
save_images: saveImages,
};
return new Promise<string | void>((resolve, reject) => {
async function request() {

Check warning on line 822 in cvat-core/src/server-proxy.ts

View workflow job for this annotation

GitHub Actions / Linter

Missing return type on function
Axios.post(baseURL, {}, {
params,
})
Expand Down Expand Up @@ -865,7 +865,8 @@
try {
if (isCloudStorage) {
const response = await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
});
return response.data.rq_id;
Expand All @@ -880,13 +881,15 @@
},
};
await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
headers: { 'Upload-Start': true },
});
await chunkUpload(file as File, uploadConfig);
const response = await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
headers: { 'Upload-Finish': true },
});
Expand All @@ -911,7 +914,7 @@
const url = `${backendAPI}/tasks/${id}/backup/export`;

return new Promise<string | void>((resolve, reject) => {
async function request() {

Check warning on line 917 in cvat-core/src/server-proxy.ts

View workflow job for this annotation

GitHub Actions / Linter

Missing return type on function
try {
const response = await Axios.post(url, {}, {
params,
Expand Down Expand Up @@ -945,7 +948,8 @@
if (isCloudStorage) {
params.filename = file as string;
response = await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
});
return response.data.rq_id;
Expand All @@ -957,13 +961,15 @@
totalSize: (file as File).size,
};
await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
headers: { 'Upload-Start': true },
});
const { filename } = await chunkUpload(file as File, uploadConfig);
response = await Axios.post(url,
new FormData(), {
new FormData(),
{
params: { ...params, filename },
headers: { 'Upload-Finish': true },
});
Expand All @@ -990,7 +996,7 @@
const url = `${backendAPI}/projects/${id}/backup/export`;

return new Promise<string | void>((resolve, reject) => {
async function request() {

Check warning on line 999 in cvat-core/src/server-proxy.ts

View workflow job for this annotation

GitHub Actions / Linter

Missing return type on function
try {
const response = await Axios.post(url, {}, {
params,
Expand Down Expand Up @@ -1024,7 +1030,8 @@
if (isCloudStorage) {
params.filename = file;
response = await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
});
return response.data.rq_id;
Expand All @@ -1036,13 +1043,15 @@
totalSize: (file as File).size,
};
await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
headers: { 'Upload-Start': true },
});
const { filename } = await chunkUpload(file as File, uploadConfig);
response = await Axios.post(url,
new FormData(), {
new FormData(),
{
params: { ...params, filename },
headers: { 'Upload-Finish': true },
});
Expand Down Expand Up @@ -1088,7 +1097,7 @@
value.forEach((element, idx) => {
taskData.append(`${key}[${idx}]`, element);
});
} else {
} else if (typeof value !== 'object') {
taskData.set(key, value);
}
}
Expand All @@ -1115,7 +1124,7 @@
message: 'CVAT is uploading task data to the server',
}));

async function bulkUpload(taskId, files) {

Check warning on line 1127 in cvat-core/src/server-proxy.ts

View workflow job for this annotation

GitHub Actions / Linter

Missing return type on function
const fileBulks = files.reduce((fileGroups, file) => {
const lastBulk = fileGroups[fileGroups.length - 1];
if (chunkSize - lastBulk.size >= file.size) {
Expand Down Expand Up @@ -1153,7 +1162,8 @@
let rqID = null;
try {
await Axios.post(`${backendAPI}/tasks/${response.data.id}/data`,
taskData, {
{},
{
...params,
headers: { 'Upload-Start': true },
});
Expand All @@ -1178,7 +1188,8 @@
await bulkUpload(response.data.id, bulkFiles);
}
const dataResponse = await Axios.post(`${backendAPI}/tasks/${response.data.id}/data`,
taskData, {
taskDataSpec,
{
...params,
headers: { 'Upload-Finish': true },
});
Expand Down Expand Up @@ -1568,7 +1579,8 @@
try {
if (isCloudStorage) {
const response = await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
});
return response.data.rq_id;
Expand All @@ -1579,13 +1591,15 @@
endpoint: `${origin}${backendAPI}/${session}s/${id}/annotations/`,
};
await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
headers: { 'Upload-Start': true },
});
await chunkUpload(file as File, uploadConfig);
const response = await Axios.post(url,
new FormData(), {
new FormData(),
{
params,
headers: { 'Upload-Finish': true },
});
Expand Down
3 changes: 1 addition & 2 deletions cvat-core/src/session-implementation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,6 @@ export function implementTask(Task: typeof TaskClass): typeof TaskClass {
if (typeof this.id !== 'undefined') {
// If the task has been already created, we update it
const taskData = {
...fields,
...this._updateTrigger.getUpdated(this, {
bugTracker: 'bug_tracker',
projectId: 'project_id',
Expand Down Expand Up @@ -680,7 +679,6 @@ export function implementTask(Task: typeof TaskClass): typeof TaskClass {
}

const taskSpec: any = {
...fields,
name: this.name,
labels: this.labels.map((el) => el.toJSON()),
};
Expand Down Expand Up @@ -723,6 +721,7 @@ export function implementTask(Task: typeof TaskClass): typeof TaskClass {
...(typeof this.dataChunkSize !== 'undefined' ? { chunk_size: this.dataChunkSize } : {}),
...(typeof this.copyData !== 'undefined' ? { copy_data: this.copyData } : {}),
...(typeof this.cloudStorageId !== 'undefined' ? { cloud_storage_id: this.cloudStorageId } : {}),
...(fields.validation_params ? { validation_params: fields.validation_params } : {}),
};

const { taskID, rqID } = await serverProxy.tasks.create(
Expand Down
9 changes: 7 additions & 2 deletions cvat-core/src/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -737,9 +737,9 @@ export class Task extends Session {
public readonly cloudStorageId: number;
public readonly sortingMethod: string;

public readonly validationMethod: string;
public readonly validationMode: string | null;
public readonly validationFramesPercent: number;
public readonly validationFramesPerJob: number;
public readonly validationFramesPerJobPercent: number;
public readonly frameSelectionMethod: string;

constructor(initialData: Readonly<Omit<SerializedTask, 'labels' | 'jobs'> & {
Expand Down Expand Up @@ -786,6 +786,8 @@ export class Task extends Session {
cloud_storage_id: undefined,
sorting_method: undefined,
files: undefined,

validation_mode: null,
};

const updateTrigger = new FieldUpdateTrigger();
Expand Down Expand Up @@ -1113,6 +1115,9 @@ export class Task extends Session {
progress: {
get: () => data.progress,
},
validationMode: {
get: () => data.validation_mode,
},
_internalData: {
get: () => data,
},
Expand Down
6 changes: 4 additions & 2 deletions cvat-sdk/cvat_sdk/core/proxies/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,11 @@ def get_frames_info(self) -> List[models.IFrameMeta]:
return self.get_meta().frames

def remove_frames_by_ids(self, ids: Sequence[int]) -> None:
self._client.api_client.tasks_api.jobs_partial_update_data_meta(
self.api.partial_update_data_meta(
self.id,
patched_data_meta_write_request=models.PatchedDataMetaWriteRequest(deleted_frames=ids),
patched_job_data_meta_write_request=models.PatchedJobDataMetaWriteRequest(
deleted_frames=ids
),
)

def get_issues(self) -> List[Issue]:
Expand Down
1 change: 1 addition & 0 deletions cvat-sdk/cvat_sdk/core/proxies/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def upload_data(
"filename_pattern",
"cloud_storage_id",
"server_files_exclude",
"validation_params",
],
)
)
Expand Down
25 changes: 12 additions & 13 deletions cvat-ui/src/actions/tasks-actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
import { filterNull } from 'utils/filter-null';
import { ThunkDispatch, ThunkAction } from 'utils/redux';

import { ValidationMethod } from 'components/create-task-page/quality-configuration-form';
import { ValidationMode } from 'components/create-task-page/quality-configuration-form';
import { getInferenceStatusAsync } from './models-actions';
import { updateRequestProgress } from './requests-actions';

Expand Down Expand Up @@ -257,19 +257,18 @@ ThunkAction {

let extras = {};

if (data.quality.validationMethod === ValidationMethod.GT) {
if (data.quality.validationMode !== ValidationMode.NONE) {
extras = {
validation_method: ValidationMethod.GT,
validation_frames_percent: data.quality.validationFramesPercent,
frame_selection_method: data.quality.frameSelectionMethod,
};
}

if (data.quality.validationMethod === ValidationMethod.HONEYPOTS) {
extras = {
validation_method: ValidationMethod.HONEYPOTS,
validation_frames_percent: data.quality.validationFramesPercent,
validation_frames_per_job: data.quality.validationFramesPerJob,
validation_params: {
mode: data.quality.validationMode,
frame_selection_method: data.quality.frameSelectionMethod,
frame_share: data.quality.validationFramesPercent ? (
data.quality.validationFramesPercent / 100
) : data.quality.validationFramesPercent,
frames_per_job_share: data.quality.validationFramesPerJobPercent ? (
data.quality.validationFramesPerJobPercent / 100
) : data.quality.validationFramesPerJobPercent,
},
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ interface Props {
frameNumber: number;
frameFilename: string;
frameDeleted: boolean;
deleteFrameAvailable: boolean;
deleteFrameShortcut: string;
focusFrameInputShortcut: string;
inputFrameRef: React.RefObject<HTMLInputElement>;
Expand Down Expand Up @@ -77,7 +76,6 @@ function PlayerNavigation(props: Props): JSX.Element {
ranges,
keyMap,
workspace,
deleteFrameAvailable,
onSliderChange,
onInputChange,
onURLIconClick,
Expand Down Expand Up @@ -192,9 +190,7 @@ function PlayerNavigation(props: Props): JSX.Element {
<CVATTooltip title='Create frame URL'>
<LinkOutlined className='cvat-player-frame-url-icon' onClick={onURLIconClick} />
</CVATTooltip>
{
deleteFrameAvailable && deleteFrameIcon
}
{ deleteFrameIcon }
</Col>
</Row>
</Col>
Expand Down
3 changes: 0 additions & 3 deletions cvat-ui/src/components/annotation-page/top-bar/top-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ interface Props {
focusFrameInputShortcut: string;
activeControl: ActiveControl;
toolsBlockerState: ToolsBlockerState;
deleteFrameAvailable: boolean;
annotationFilters: object[];
initialOpenGuide: boolean;
keyMap: KeyMap;
Expand Down Expand Up @@ -101,7 +100,6 @@ export default function AnnotationTopBarComponent(props: Props): JSX.Element {
toolsBlockerState,
annotationFilters,
initialOpenGuide,
deleteFrameAvailable,
navigationType,
jobInstance,
keyMap,
Expand Down Expand Up @@ -176,7 +174,6 @@ export default function AnnotationTopBarComponent(props: Props): JSX.Element {
onDeleteFrame={onDeleteFrame}
onRestoreFrame={onRestoreFrame}
switchNavigationBlocked={switchNavigationBlocked}
deleteFrameAvailable={deleteFrameAvailable}
/>
), 10]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ interface Props {
onChangeUseProjectTargetStorage(value: boolean): void;
onChangeSourceStorageLocation: (value: StorageLocation) => void;
onChangeTargetStorageLocation: (value: StorageLocation) => void;
onChangeSortingMethod(value: SortingMethod): void;
projectId: number | null;
useProjectSourceStorage: boolean;
useProjectTargetStorage: boolean;
Expand Down Expand Up @@ -225,6 +226,8 @@ class AdvancedConfigurationForm extends React.PureComponent<Props> {
}

private renderSortingMethodRadio(): JSX.Element {
const { onChangeSortingMethod } = this.props;

return (
<Form.Item
label='Sorting method'
Expand All @@ -237,7 +240,7 @@ class AdvancedConfigurationForm extends React.PureComponent<Props> {
]}
help='Specify how to sort images. It is not relevant for videos.'
>
<Radio.Group buttonStyle='solid'>
<Radio.Group buttonStyle='solid' onChange={(e) => onChangeSortingMethod(e.target.value)}>
<Radio.Button value={SortingMethod.LEXICOGRAPHICAL} key={SortingMethod.LEXICOGRAPHICAL}>
Lexicographical
</Radio.Button>
Expand Down
Loading
Loading