Skip to content

Commit 098b468

Browse files
authored
Merge pull request #21 from midas-research/random-segments-gt
Random segments gt
2 parents 0f5d039 + fd47ab1 commit 098b468

32 files changed

+967
-452
lines changed

.vscode/launch.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,28 @@
320320
"env": {},
321321
"console": "internalConsole"
322322
},
323+
{
324+
"name": "server: RQ - gt_jobs",
325+
"type": "debugpy",
326+
"request": "launch",
327+
"stopOnEntry": false,
328+
"justMyCode": false,
329+
"python": "${command:python.interpreterPath}",
330+
"program": "${workspaceFolder}/manage.py",
331+
"args": [
332+
"rqworker",
333+
"gt_jobs",
334+
"--worker-class",
335+
"cvat.rqworker.SimpleWorker"
336+
],
337+
"django": true,
338+
"cwd": "${workspaceFolder}",
339+
"env": {
340+
// "DJANGO_LOG_SERVER_HOST": "localhost",
341+
// "DJANGO_LOG_SERVER_PORT": "8282"
342+
},
343+
"console": "internalConsole"
344+
},
323345
{
324346
"name": "server: RQ - webhooks",
325347
"type": "debugpy",
@@ -538,6 +560,7 @@
538560
"server: RQ - scheduler",
539561
"server: RQ - quality reports",
540562
"server: RQ - analytics reports",
563+
"server: RQ - gt_jobs",
541564
"server: RQ - cleaning"
542565
]
543566
}

cvat-sdk/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,5 @@ target/
7474
/docs/
7575
/requirements/api_client.txt
7676
/setup.py
77+
/audino_cvat_sdk/api_client/
78+
/audino_cvat_sdk/version.py

cvat-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SDK for [Computer Vision Annotation Tool (CVAT)](https://github.com/cvat-ai/cvat)
1+
# SDK for [Computer Vision Annotation Tool (CVAT) + AUDINO](https://audino.in/)
22

33
This package provides a Python client library for CVAT server. It can be useful for
44
workflow automation and writing custom CVAT server clients.
@@ -31,5 +31,5 @@ To install from the local directory, follow [the developer guide](https://docs.c
3131
After installation you can import the package:
3232

3333
```python
34-
import cvat_sdk
34+
import audino_cvat_sdk
3535
```
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (C) 2025 CVAT.ai Corporation
2+
#
3+
# SPDX-License-Identifier: MIT
4+

cvat-sdk/gen/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e
88

99
GENERATOR_VERSION="v6.0.1"
1010

11-
VERSION="2.16.0"
11+
VERSION="2.18.0"
1212
LIB_NAME="cvat_sdk"
1313
LAYER1_LIB_NAME="${LIB_NAME}/api_client"
1414
DST_DIR="$(cd "$(dirname -- "$0")/.." && pwd)"

cvat-sdk/gen/generator-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
additionalProperties:
22
projectName: "cvat_sdk"
3-
packageUrl: "https://github.com/cvat-ai/cvat"
3+
packageUrl: "https://github.com/midas-research/cvat"
44
packageName: "cvat_sdk.api_client"
55
initRequiredVars: true
66
generateSourceCodeOnly: false

0 commit comments

Comments
 (0)