-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into kl/improve-quality-ux
- Loading branch information
Showing
237 changed files
with
4,335 additions
and
2,758 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,35 +5,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: files | ||
uses: tj-actions/[email protected] | ||
with: | ||
files: | | ||
cvat-sdk/**/*.py | ||
cvat-cli/**/*.py | ||
tests/python/**/*.py | ||
cvat/apps/quality_control/**/*.py | ||
cvat/apps/analytics_report/**/*.py | ||
dir_names: true | ||
|
||
- name: Run checks | ||
run: | | ||
# If different modules use different isort configs, | ||
# we need to run isort for each python component group separately. | ||
# Otherwise, they all will use the same config. | ||
pipx install $(grep "^isort" ./dev/requirements.txt) | ||
UPDATED_DIRS="${{steps.files.outputs.all_changed_files}}" | ||
echo "isort version: $(isort --version-number)" | ||
if [[ ! -z $UPDATED_DIRS ]]; then | ||
pipx install $(grep "^isort" ./dev/requirements.txt) | ||
echo "isort version: $(isort --version-number)" | ||
echo "The dirs will be checked: $UPDATED_DIRS" | ||
EXIT_CODE=0 | ||
for DIR in $UPDATED_DIRS; do | ||
isort --check $DIR || EXIT_CODE=$(($? | $EXIT_CODE)) || true | ||
done | ||
exit $EXIT_CODE | ||
else | ||
echo "No files with the \"py\" extension found" | ||
fi | ||
isort --check --diff --resolve-all-configs . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### Changed | ||
|
||
- The `match_empty_frames` quality setting is changed to `empty_is_annotated`. | ||
The updated option includes any empty frames in the final metrics instead of only | ||
matching empty frames. This makes metrics such as Precision much more representative and useful. | ||
(<https://github.com/cvat-ai/cvat/pull/8888>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Added | ||
|
||
- Ultralytics YOLO formats now support tracks | ||
(<https://github.com/cvat-ai/cvat/pull/8883>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20250108_124804_dmitrii.lavrukhin_yolo_preserve_rotation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Changing rotation after export/import in Ultralytics YOLO Oriented Boxes format | ||
(<https://github.com/cvat-ai/cvat/pull/8891>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.