├── .commitlintrc ├── .dockerignore ├── .github └── workflows │ ├── app-cd.yaml │ ├── sync-dev.yml │ └── tool-ci.yaml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── codecov.yml ├── dds.py ├── ddsop.py ├── deepdataspace ├── __init__.py ├── algos │ ├── __init__.py │ ├── calculate_fnfp.py │ ├── graph.py │ └── refine_by_seed.py ├── constants.py ├── environs.py ├── globals.py ├── io │ ├── __init__.py │ └── importer.py ├── model │ ├── __init__.py │ ├── _base.py │ ├── category.py │ ├── dataset.py │ ├── image.py │ ├── label.py │ ├── label_task.py │ ├── object.py │ └── user.py ├── plugins │ ├── __init__.py │ ├── coco2017 │ │ ├── __init__.py │ │ └── importer.py │ └── tsv │ │ ├── __init__.py │ │ ├── importer.py │ │ ├── process.py │ │ └── server.py ├── process │ ├── __init__.py │ ├── calculate_fnfp.py │ └── processor.py ├── samples │ └── coco_dataset_meta.py ├── scripts │ ├── __init__.py │ ├── dataset_cmds.py │ ├── enter_shell.py │ ├── label_project_cmds.py │ ├── migrate │ │ ├── 2023053101.py │ │ ├── 2023061401.py │ │ └── __init__.py │ ├── start.py │ └── user_cmds.py ├── server │ ├── __init__.py │ ├── apps.py │ ├── manage.py │ ├── middlewares │ │ ├── __init__.py │ │ └── request_perf.py │ ├── resources │ │ ├── __init__.py │ │ ├── api_v1 │ │ │ ├── __init__.py │ │ │ ├── comparisons.py │ │ │ ├── datasets.py │ │ │ ├── image_flags.py │ │ │ ├── images.py │ │ │ ├── label_clone.py │ │ │ ├── label_tasks.py │ │ │ ├── lints.py │ │ │ ├── login.py │ │ │ └── ping.py │ │ └── files │ │ │ ├── __init__.py │ │ │ ├── dataset_flags.py │ │ │ └── local_file.py │ ├── settings.py │ ├── static │ │ ├── 124.69a3d116.async.js │ │ ├── 20.85fcbb81.async.js │ │ ├── 222.33ccd216.async.js │ │ ├── 233.3d91ac9a.async.js │ │ ├── 422.f952182a.async.js │ │ ├── 7.e4c5d564.async.js │ │ ├── 742.bbe64d32.async.js │ │ ├── 845.7d656ce9.async.js │ │ ├── 851.1072d61f.async.js │ │ ├── 9.9f27f1a0.async.js │ │ ├── favicon.png │ │ ├── index.html │ │ ├── layouts__index.cf0de806.chunk.css │ │ ├── layouts__index.f60cee94.async.js │ │ ├── p__404.0f1cb5ec.async.js │ │ ├── p__Annotator__index.8750e2fd.async.js │ │ ├── p__DatasetList__index.91c4bfd3.async.js │ │ ├── p__DatasetList__index.cbd96143.chunk.css │ │ ├── p__Dataset__index.419888be.async.js │ │ ├── p__Dataset__index.c6647b2a.chunk.css │ │ ├── p__Lab__Datasets__index.6cbc99df.async.js │ │ ├── p__Lab__Datasets__index.e9f4c3ea.chunk.css │ │ ├── p__Lab__FlagTool__index.c0569e06.chunk.css │ │ ├── p__Lab__FlagTool__index.c0cac9b9.async.js │ │ ├── p__Lab__index.28ea9971.chunk.css │ │ ├── p__Lab__index.5de6b129.async.js │ │ ├── p__Login__index.26727079.chunk.css │ │ ├── p__Login__index.572dbaae.async.js │ │ ├── p__Project__Detail__index.9b99b574.chunk.css │ │ ├── p__Project__Detail__index.f6bb0552.async.js │ │ ├── p__Project__Workspace__index.2c2baf46.async.js │ │ ├── p__Project__Workspace__index.983f52a6.chunk.css │ │ ├── p__Project__index.711b5411.chunk.css │ │ ├── p__Project__index.88bd2c95.async.js │ │ ├── static │ │ │ ├── annotate_coop.44ac433d.png │ │ │ ├── annotate_quick.b8733d56.png │ │ │ ├── card_cover_4.b81bbca8.png │ │ │ ├── flagtool.a991e5bd.png │ │ │ └── home_banner.0fcae71f.png │ │ ├── t__plugin-layout__Layout.2ad2010d.async.js │ │ ├── t__plugin-layout__Layout.8f39539f.chunk.css │ │ ├── umi.c30875f2.js │ │ ├── umi.e762716e.css │ │ └── wrappers__auth.d0b0c30b.async.js │ ├── templates │ │ └── index.html │ ├── urls.py │ ├── utils.py │ ├── views │ │ ├── __init__.py │ │ └── index.py │ └── wsgi.py ├── services │ ├── __init__.py │ ├── celery.py │ ├── config.py │ ├── dds.config.sample.yaml │ ├── dds.py │ ├── django.py │ ├── mongodb.py │ ├── redis.py │ ├── service.py │ └── sqlite.py ├── task │ ├── __init__.py │ ├── celery.py │ ├── import_dataset.py │ ├── ping.py │ ├── process_dataset.py │ └── settings.py └── utils │ ├── __init__.py │ ├── classes.py │ ├── file.py │ ├── function.py │ ├── http.py │ ├── import_utils.py │ ├── network.py │ ├── os.py │ └── string.py ├── docker-compose.yaml ├── docker ├── init-dds.py └── init-mongo.js ├── package.json ├── packages ├── app │ ├── .env │ ├── .eslintrc.js │ ├── .gitignore │ ├── .lintstagedrc │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── .stylelintrc.js │ ├── .umirc.ts │ ├── README.md │ ├── jest.config.ts │ ├── mock │ │ ├── dataset.ts │ │ ├── project.ts │ │ ├── task.ts │ │ └── temp.ts │ ├── package.json │ ├── src │ │ ├── app.tsx │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── images │ │ │ │ ├── cards │ │ │ │ │ ├── annotate_coop.png │ │ │ │ │ ├── annotate_quick.png │ │ │ │ │ ├── card_cover_0.png │ │ │ │ │ ├── card_cover_1.png │ │ │ │ │ ├── card_cover_2.png │ │ │ │ │ ├── card_cover_3.png │ │ │ │ │ ├── card_cover_4.png │ │ │ │ │ ├── card_cover_5.png │ │ │ │ │ └── flagtool.png │ │ │ │ ├── favicon.png │ │ │ │ ├── home_banner.png │ │ │ │ ├── logo_title.png │ │ │ │ ├── old_favicon.png │ │ │ │ └── old_logo_title.png │ │ │ └── svg │ │ │ │ ├── auto-awesome.svg │ │ │ │ ├── auto-fix.svg │ │ │ │ ├── classification.svg │ │ │ │ ├── dash-box.svg │ │ │ │ ├── datasetClassify.svg │ │ │ │ ├── datasetDetection.svg │ │ │ │ ├── datasetKeypoint.svg │ │ │ │ ├── datasetMatting.svg │ │ │ │ ├── datasetSegment.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── download.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── email-send.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── keypoints.svg │ │ │ │ ├── maxSize.svg │ │ │ │ ├── minSize.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── multVisible.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── random.svg │ │ │ │ ├── rect.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── square.svg │ │ │ │ └── visible.svg │ │ ├── components │ │ │ ├── CategoryFilter │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── DatasetItem │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── DisplayOptions │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── DropdownSelector │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── ImportImgsForm │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── LabelOptions │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── LoginModal │ │ │ │ └── index.tsx │ │ │ └── UploadImageList │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── constants │ │ │ └── index.ts │ │ ├── favicon.png │ │ ├── global.less │ │ ├── global.ts │ │ ├── layouts │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── menu.tsx │ │ ├── locales │ │ │ ├── en-US.ts │ │ │ └── zh-CN.ts │ │ ├── models │ │ │ ├── dataset │ │ │ │ ├── common.tsx │ │ │ │ ├── comparisons.ts │ │ │ │ ├── filters.ts │ │ │ │ ├── flag.ts │ │ │ │ └── type.ts │ │ │ ├── datasets.ts │ │ │ ├── global.ts │ │ │ └── user.ts │ │ ├── pages │ │ │ ├── 404.tsx │ │ │ ├── Annotator │ │ │ │ ├── components │ │ │ │ │ ├── FormModal │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── ImageList │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── model.ts │ │ │ ├── Dataset │ │ │ │ ├── components │ │ │ │ │ ├── ComparisonsBar │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── DiffLabelsTip │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── Header │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── model.ts │ │ │ ├── DatasetList │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── model.ts │ │ │ ├── Lab │ │ │ │ ├── Datasets │ │ │ │ │ ├── index.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── model.ts │ │ │ │ ├── FlagTool │ │ │ │ │ ├── components │ │ │ │ │ │ ├── FlagToolsBar │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── Header │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── model.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── Login │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── Project │ │ │ │ ├── Detail │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── Workspace │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── components │ │ │ │ ├── ProgressBar │ │ │ │ │ └── index.tsx │ │ │ │ ├── ProjectEditModal │ │ │ │ │ └── index.tsx │ │ │ │ ├── ProjectExportModal │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── ProjectInfoModal │ │ │ │ │ └── index.tsx │ │ │ │ ├── TableTags │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── TaskAssignModal │ │ │ │ │ └── index.tsx │ │ │ │ ├── TaskDetailModal │ │ │ │ │ └── index.tsx │ │ │ │ └── TaskProgress │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── models │ │ │ │ ├── auth.ts │ │ │ │ ├── detail.ts │ │ │ │ ├── list.ts │ │ │ │ └── workspace.ts │ │ ├── routes.ts │ │ ├── services │ │ │ ├── common.ts │ │ │ ├── dataset.ts │ │ │ ├── errorCode.ts │ │ │ ├── project.ts │ │ │ └── user.ts │ │ ├── types │ │ │ ├── annotator.ts │ │ │ ├── api.ts │ │ │ ├── coco.ts │ │ │ ├── dataset.ts │ │ │ ├── index.ts │ │ │ └── project.ts │ │ ├── typings.d.ts │ │ ├── utils │ │ │ ├── adapter.ts │ │ │ └── datasets.ts │ │ └── wrappers │ │ │ └── auth.tsx │ ├── tests │ │ ├── components │ │ │ ├── DropdownSelector.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── DropdownSelector.test.tsx.snap │ │ ├── file-transform.js │ │ ├── hooks │ │ │ └── useWindowResize.test.ts │ │ ├── jest-setup.ts │ │ ├── layouts │ │ │ ├── __snapshots__ │ │ │ │ ├── layout.test.tsx.snap │ │ │ │ └── menu.test.tsx.snap │ │ │ ├── layout.test.tsx │ │ │ └── menu.test.tsx │ │ ├── models │ │ │ ├── dataset.test.tsx │ │ │ ├── datasets.test.tsx │ │ │ ├── global.test.tsx │ │ │ └── user.test.tsx │ │ ├── pages │ │ │ ├── 404.test.tsx │ │ │ └── DatasetList.test.tsx │ │ ├── test-utils.tsx │ │ └── utils │ │ │ ├── digit.test.ts │ │ │ ├── file.test.ts │ │ │ └── url.test.ts │ └── tsconfig.json ├── components │ ├── .dumirc.ts │ ├── .fatherrc.ts │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── docs │ │ ├── guide.md │ │ └── index.md │ ├── package.json │ ├── public │ │ └── favicon.png │ ├── src │ │ ├── Annotator │ │ │ ├── assets │ │ │ │ ├── add-prompt.svg │ │ │ │ ├── attribute.svg │ │ │ │ ├── brush-add.svg │ │ │ │ ├── brush-erase.svg │ │ │ │ ├── custom.svg │ │ │ │ ├── delete_all.svg │ │ │ │ ├── displayReset.svg │ │ │ │ ├── docs.svg │ │ │ │ ├── doubleRight.svg │ │ │ │ ├── downArror.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── edge-stitch.svg │ │ │ │ ├── house.svg │ │ │ │ ├── img-broken.svg │ │ │ │ ├── imgSetting.svg │ │ │ │ ├── keyboard-down.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── label.svg │ │ │ │ ├── layer.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── magic-box.svg │ │ │ │ ├── magic-brush.svg │ │ │ │ ├── magic-click.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── mask-ai.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── mouse-left.svg │ │ │ │ ├── mouse-right.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pen-add.svg │ │ │ │ ├── pen-erase.svg │ │ │ │ ├── play-next.svg │ │ │ │ ├── play-pre.svg │ │ │ │ ├── play-stop.svg │ │ │ │ ├── play.svg │ │ │ │ ├── point.svg │ │ │ │ ├── polygon-ai.svg │ │ │ │ ├── polygon.svg │ │ │ │ ├── rectangle-ai.svg │ │ │ │ ├── rectangle.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── remove-prompt.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── review.svg │ │ │ │ ├── segment-everything.svg │ │ │ │ ├── settings-sliders.svg │ │ │ │ ├── skeleton-ai.svg │ │ │ │ ├── skeleton.svg │ │ │ │ ├── text-prompt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── visual-prompt.svg │ │ │ │ └── zoomResize.svg │ │ │ ├── components │ │ │ │ ├── AttributeEditor │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── AttributesForm │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── CategoryCreator │ │ │ │ │ └── index.tsx │ │ │ │ ├── Classification │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── DisplaySettings │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── EditorStatus │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── FloatWrapper │ │ │ │ │ └── index.tsx │ │ │ │ ├── HighlightText │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── ImageView │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── LabelSelector │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── ModelSelectModal │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── ModelSelector │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── ObjectList │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── PointItem │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── PointsEditModal │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── PopoverMenu │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── SegConfirmModal │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── ShortcutsInfo │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── SliderToolBar │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── SmartAnnotationControl │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── SubToolBar │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── TopPagination │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ └── TopTools │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ ├── constants │ │ │ │ ├── index.ts │ │ │ │ ├── render.ts │ │ │ │ └── shortcuts.ts │ │ │ ├── editor.tsx │ │ │ ├── hooks │ │ │ │ ├── useActions.tsx │ │ │ │ ├── useAiModels.ts │ │ │ │ ├── useAttributes.ts │ │ │ │ ├── useCanvasContainer.tsx │ │ │ │ ├── useCanvasRender.tsx │ │ │ │ ├── useColor.ts │ │ │ │ ├── useDataEffect.ts │ │ │ │ ├── useHistory.ts │ │ │ │ ├── useLabels.ts │ │ │ │ ├── useMouseCursor.ts │ │ │ │ ├── useMouseEvents.tsx │ │ │ │ ├── useObjects.ts │ │ │ │ ├── usePreviousState.ts │ │ │ │ ├── useShortcuts.ts │ │ │ │ ├── useSubtools.tsx │ │ │ │ ├── useToolActions.ts │ │ │ │ ├── useTopTools.tsx │ │ │ │ └── useTranslate.ts │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── preview.tsx │ │ │ ├── sevices │ │ │ │ └── index.ts │ │ │ ├── tools │ │ │ │ ├── base.ts │ │ │ │ ├── useMask.ts │ │ │ │ ├── useMatting.ts │ │ │ │ ├── usePoint.ts │ │ │ │ ├── usePolygon.ts │ │ │ │ ├── usePolyline.ts │ │ │ │ ├── useRectangle.ts │ │ │ │ └── useSkeleton.ts │ │ │ ├── type.ts │ │ │ ├── utils │ │ │ │ ├── base64.ts │ │ │ │ ├── color.ts │ │ │ │ ├── compute.ts │ │ │ │ ├── draw.ts │ │ │ │ └── verify.ts │ │ │ └── view.tsx │ │ ├── ColumnSettings │ │ │ ├── assets │ │ │ │ ├── minus.svg │ │ │ │ ├── plus.svg │ │ │ │ └── settings.svg │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── DynamicPagination │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── GlobalLoading │ │ │ ├── demo.tsx │ │ │ ├── index.md │ │ │ └── index.tsx │ │ ├── LangSelector │ │ │ ├── demo.tsx │ │ │ ├── index.less │ │ │ ├── index.md │ │ │ └── index.tsx │ │ ├── MobileAlert │ │ │ └── index.tsx │ │ ├── NotFoundTip │ │ │ └── index.tsx │ │ ├── QuickLabel │ │ │ ├── components │ │ │ │ ├── ImageFilter │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── ImageList │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ └── QuickstartModal │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ ├── hooks │ │ │ │ └── useQuickLabelModel.ts │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── type.ts │ │ │ └── utils │ │ │ │ ├── adapter.ts │ │ │ │ └── idConverter.ts │ │ ├── RunningErrorTip │ │ │ ├── demo.tsx │ │ │ ├── index.md │ │ │ └── index.tsx │ │ ├── Upload │ │ │ ├── assets │ │ │ │ ├── checked.svg │ │ │ │ └── upload.svg │ │ │ ├── components │ │ │ │ └── FilePreviewList │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── UploadPreAnno │ │ │ ├── assets │ │ │ │ └── upload_file.svg │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── index.ts │ │ └── locales │ │ │ ├── en-US.ts │ │ │ └── zh-CN.ts │ └── tsconfig.json ├── hooks │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── usePageModelLifeCycle.ts │ │ └── useWindowResize.ts │ └── tsconfig.json └── utils │ ├── package.json │ ├── src │ ├── digit.ts │ ├── file.ts │ ├── index.ts │ ├── locale.ts │ └── url.ts │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── benchmark │ └── __init__.py ├── conftest.py ├── dds.test.yaml ├── integration │ ├── __init__.py │ └── test_label_project.py ├── resource │ └── image │ │ └── 1.jpg ├── seed.py └── unittest │ └── __init__.py ├── tsconfig.json └── typings.d.ts /.commitlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.commitlintrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/app-cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.github/workflows/app-cd.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.github/workflows/sync-dev.yml -------------------------------------------------------------------------------- /.github/workflows/tool-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.github/workflows/tool-ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/.npmrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/codecov.yml -------------------------------------------------------------------------------- /dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/dds.py -------------------------------------------------------------------------------- /ddsop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/ddsop.py -------------------------------------------------------------------------------- /deepdataspace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/__init__.py -------------------------------------------------------------------------------- /deepdataspace/algos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/algos/__init__.py -------------------------------------------------------------------------------- /deepdataspace/algos/calculate_fnfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/algos/calculate_fnfp.py -------------------------------------------------------------------------------- /deepdataspace/algos/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/algos/graph.py -------------------------------------------------------------------------------- /deepdataspace/algos/refine_by_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/algos/refine_by_seed.py -------------------------------------------------------------------------------- /deepdataspace/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/constants.py -------------------------------------------------------------------------------- /deepdataspace/environs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/environs.py -------------------------------------------------------------------------------- /deepdataspace/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/globals.py -------------------------------------------------------------------------------- /deepdataspace/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/io/__init__.py -------------------------------------------------------------------------------- /deepdataspace/io/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/io/importer.py -------------------------------------------------------------------------------- /deepdataspace/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/__init__.py -------------------------------------------------------------------------------- /deepdataspace/model/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/_base.py -------------------------------------------------------------------------------- /deepdataspace/model/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/category.py -------------------------------------------------------------------------------- /deepdataspace/model/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/dataset.py -------------------------------------------------------------------------------- /deepdataspace/model/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/image.py -------------------------------------------------------------------------------- /deepdataspace/model/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/label.py -------------------------------------------------------------------------------- /deepdataspace/model/label_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/label_task.py -------------------------------------------------------------------------------- /deepdataspace/model/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/object.py -------------------------------------------------------------------------------- /deepdataspace/model/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/model/user.py -------------------------------------------------------------------------------- /deepdataspace/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/plugins/__init__.py -------------------------------------------------------------------------------- /deepdataspace/plugins/coco2017/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/plugins/coco2017/__init__.py -------------------------------------------------------------------------------- /deepdataspace/plugins/coco2017/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/plugins/coco2017/importer.py -------------------------------------------------------------------------------- /deepdataspace/plugins/tsv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/plugins/tsv/__init__.py -------------------------------------------------------------------------------- /deepdataspace/plugins/tsv/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/plugins/tsv/importer.py -------------------------------------------------------------------------------- /deepdataspace/plugins/tsv/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/plugins/tsv/process.py -------------------------------------------------------------------------------- /deepdataspace/plugins/tsv/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/plugins/tsv/server.py -------------------------------------------------------------------------------- /deepdataspace/process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/process/__init__.py -------------------------------------------------------------------------------- /deepdataspace/process/calculate_fnfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/process/calculate_fnfp.py -------------------------------------------------------------------------------- /deepdataspace/process/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/process/processor.py -------------------------------------------------------------------------------- /deepdataspace/samples/coco_dataset_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/samples/coco_dataset_meta.py -------------------------------------------------------------------------------- /deepdataspace/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/__init__.py -------------------------------------------------------------------------------- /deepdataspace/scripts/dataset_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/dataset_cmds.py -------------------------------------------------------------------------------- /deepdataspace/scripts/enter_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/enter_shell.py -------------------------------------------------------------------------------- /deepdataspace/scripts/label_project_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/label_project_cmds.py -------------------------------------------------------------------------------- /deepdataspace/scripts/migrate/2023053101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/migrate/2023053101.py -------------------------------------------------------------------------------- /deepdataspace/scripts/migrate/2023061401.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/migrate/2023061401.py -------------------------------------------------------------------------------- /deepdataspace/scripts/migrate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/migrate/__init__.py -------------------------------------------------------------------------------- /deepdataspace/scripts/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/start.py -------------------------------------------------------------------------------- /deepdataspace/scripts/user_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/scripts/user_cmds.py -------------------------------------------------------------------------------- /deepdataspace/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/__init__.py -------------------------------------------------------------------------------- /deepdataspace/server/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/apps.py -------------------------------------------------------------------------------- /deepdataspace/server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/manage.py -------------------------------------------------------------------------------- /deepdataspace/server/middlewares/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/middlewares/__init__.py -------------------------------------------------------------------------------- /deepdataspace/server/middlewares/request_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/middlewares/request_perf.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/__init__.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/__init__.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/comparisons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/comparisons.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/datasets.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/image_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/image_flags.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/images.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/label_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/label_clone.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/label_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/label_tasks.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/lints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/lints.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/login.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/api_v1/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/api_v1/ping.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/files/__init__.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/files/dataset_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/files/dataset_flags.py -------------------------------------------------------------------------------- /deepdataspace/server/resources/files/local_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/resources/files/local_file.py -------------------------------------------------------------------------------- /deepdataspace/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/settings.py -------------------------------------------------------------------------------- /deepdataspace/server/static/124.69a3d116.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/124.69a3d116.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/20.85fcbb81.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/20.85fcbb81.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/222.33ccd216.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/222.33ccd216.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/233.3d91ac9a.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/233.3d91ac9a.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/422.f952182a.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/422.f952182a.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/7.e4c5d564.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/7.e4c5d564.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/742.bbe64d32.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/742.bbe64d32.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/845.7d656ce9.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/845.7d656ce9.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/851.1072d61f.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/851.1072d61f.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/9.9f27f1a0.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/9.9f27f1a0.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/favicon.png -------------------------------------------------------------------------------- /deepdataspace/server/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/index.html -------------------------------------------------------------------------------- /deepdataspace/server/static/layouts__index.cf0de806.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/layouts__index.cf0de806.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/layouts__index.f60cee94.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/layouts__index.f60cee94.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__404.0f1cb5ec.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__404.0f1cb5ec.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Annotator__index.8750e2fd.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Annotator__index.8750e2fd.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__DatasetList__index.91c4bfd3.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__DatasetList__index.91c4bfd3.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__DatasetList__index.cbd96143.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__DatasetList__index.cbd96143.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Dataset__index.419888be.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Dataset__index.419888be.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Dataset__index.c6647b2a.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Dataset__index.c6647b2a.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Lab__Datasets__index.6cbc99df.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Lab__Datasets__index.6cbc99df.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Lab__Datasets__index.e9f4c3ea.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Lab__Datasets__index.e9f4c3ea.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Lab__FlagTool__index.c0569e06.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Lab__FlagTool__index.c0569e06.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Lab__FlagTool__index.c0cac9b9.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Lab__FlagTool__index.c0cac9b9.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Lab__index.28ea9971.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Lab__index.28ea9971.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Lab__index.5de6b129.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Lab__index.5de6b129.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Login__index.26727079.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Login__index.26727079.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Login__index.572dbaae.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Login__index.572dbaae.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Project__Detail__index.9b99b574.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Project__Detail__index.9b99b574.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Project__Detail__index.f6bb0552.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Project__Detail__index.f6bb0552.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Project__Workspace__index.2c2baf46.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Project__Workspace__index.2c2baf46.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Project__Workspace__index.983f52a6.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Project__Workspace__index.983f52a6.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Project__index.711b5411.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Project__index.711b5411.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/p__Project__index.88bd2c95.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/p__Project__index.88bd2c95.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/static/annotate_coop.44ac433d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/static/annotate_coop.44ac433d.png -------------------------------------------------------------------------------- /deepdataspace/server/static/static/annotate_quick.b8733d56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/static/annotate_quick.b8733d56.png -------------------------------------------------------------------------------- /deepdataspace/server/static/static/card_cover_4.b81bbca8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/static/card_cover_4.b81bbca8.png -------------------------------------------------------------------------------- /deepdataspace/server/static/static/flagtool.a991e5bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/static/flagtool.a991e5bd.png -------------------------------------------------------------------------------- /deepdataspace/server/static/static/home_banner.0fcae71f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/static/home_banner.0fcae71f.png -------------------------------------------------------------------------------- /deepdataspace/server/static/t__plugin-layout__Layout.2ad2010d.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/t__plugin-layout__Layout.2ad2010d.async.js -------------------------------------------------------------------------------- /deepdataspace/server/static/t__plugin-layout__Layout.8f39539f.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/t__plugin-layout__Layout.8f39539f.chunk.css -------------------------------------------------------------------------------- /deepdataspace/server/static/umi.c30875f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/umi.c30875f2.js -------------------------------------------------------------------------------- /deepdataspace/server/static/umi.e762716e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/umi.e762716e.css -------------------------------------------------------------------------------- /deepdataspace/server/static/wrappers__auth.d0b0c30b.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/static/wrappers__auth.d0b0c30b.async.js -------------------------------------------------------------------------------- /deepdataspace/server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/templates/index.html -------------------------------------------------------------------------------- /deepdataspace/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/urls.py -------------------------------------------------------------------------------- /deepdataspace/server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/utils.py -------------------------------------------------------------------------------- /deepdataspace/server/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/views/__init__.py -------------------------------------------------------------------------------- /deepdataspace/server/views/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/views/index.py -------------------------------------------------------------------------------- /deepdataspace/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/server/wsgi.py -------------------------------------------------------------------------------- /deepdataspace/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/__init__.py -------------------------------------------------------------------------------- /deepdataspace/services/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/celery.py -------------------------------------------------------------------------------- /deepdataspace/services/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/config.py -------------------------------------------------------------------------------- /deepdataspace/services/dds.config.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/dds.config.sample.yaml -------------------------------------------------------------------------------- /deepdataspace/services/dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/dds.py -------------------------------------------------------------------------------- /deepdataspace/services/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/django.py -------------------------------------------------------------------------------- /deepdataspace/services/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/mongodb.py -------------------------------------------------------------------------------- /deepdataspace/services/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/redis.py -------------------------------------------------------------------------------- /deepdataspace/services/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/service.py -------------------------------------------------------------------------------- /deepdataspace/services/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/services/sqlite.py -------------------------------------------------------------------------------- /deepdataspace/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/task/__init__.py -------------------------------------------------------------------------------- /deepdataspace/task/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/task/celery.py -------------------------------------------------------------------------------- /deepdataspace/task/import_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/task/import_dataset.py -------------------------------------------------------------------------------- /deepdataspace/task/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/task/ping.py -------------------------------------------------------------------------------- /deepdataspace/task/process_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/task/process_dataset.py -------------------------------------------------------------------------------- /deepdataspace/task/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/task/settings.py -------------------------------------------------------------------------------- /deepdataspace/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module includes convenient functions 3 | """ 4 | -------------------------------------------------------------------------------- /deepdataspace/utils/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/utils/classes.py -------------------------------------------------------------------------------- /deepdataspace/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/utils/file.py -------------------------------------------------------------------------------- /deepdataspace/utils/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/utils/function.py -------------------------------------------------------------------------------- /deepdataspace/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/utils/http.py -------------------------------------------------------------------------------- /deepdataspace/utils/import_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/utils/import_utils.py -------------------------------------------------------------------------------- /deepdataspace/utils/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/utils/network.py -------------------------------------------------------------------------------- /deepdataspace/utils/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/utils/os.py -------------------------------------------------------------------------------- /deepdataspace/utils/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/deepdataspace/utils/string.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docker/init-dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/docker/init-dds.py -------------------------------------------------------------------------------- /docker/init-mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/docker/init-mongo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/package.json -------------------------------------------------------------------------------- /packages/app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.env -------------------------------------------------------------------------------- /packages/app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.eslintrc.js -------------------------------------------------------------------------------- /packages/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.gitignore -------------------------------------------------------------------------------- /packages/app/.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.lintstagedrc -------------------------------------------------------------------------------- /packages/app/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.npmrc -------------------------------------------------------------------------------- /packages/app/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.prettierignore -------------------------------------------------------------------------------- /packages/app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.prettierrc -------------------------------------------------------------------------------- /packages/app/.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.stylelintrc.js -------------------------------------------------------------------------------- /packages/app/.umirc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/.umirc.ts -------------------------------------------------------------------------------- /packages/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/README.md -------------------------------------------------------------------------------- /packages/app/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/jest.config.ts -------------------------------------------------------------------------------- /packages/app/mock/dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/mock/dataset.ts -------------------------------------------------------------------------------- /packages/app/mock/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/mock/project.ts -------------------------------------------------------------------------------- /packages/app/mock/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/mock/task.ts -------------------------------------------------------------------------------- /packages/app/mock/temp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/mock/temp.ts -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/package.json -------------------------------------------------------------------------------- /packages/app/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/app.tsx -------------------------------------------------------------------------------- /packages/app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/annotate_coop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/annotate_coop.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/annotate_quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/annotate_quick.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/card_cover_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/card_cover_0.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/card_cover_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/card_cover_1.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/card_cover_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/card_cover_2.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/card_cover_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/card_cover_3.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/card_cover_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/card_cover_4.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/card_cover_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/card_cover_5.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/cards/flagtool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/cards/flagtool.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/favicon.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/home_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/home_banner.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/logo_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/logo_title.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/old_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/old_favicon.png -------------------------------------------------------------------------------- /packages/app/src/assets/images/old_logo_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/images/old_logo_title.png -------------------------------------------------------------------------------- /packages/app/src/assets/svg/auto-awesome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/auto-awesome.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/auto-fix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/auto-fix.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/classification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/classification.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/dash-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/dash-box.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/datasetClassify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/datasetClassify.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/datasetDetection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/datasetDetection.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/datasetKeypoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/datasetKeypoint.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/datasetMatting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/datasetMatting.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/datasetSegment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/datasetSegment.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/delete.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/download.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/edit.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/email-send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/email-send.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/flag.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/hand.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/keypoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/keypoints.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/maxSize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/maxSize.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/minSize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/minSize.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/minus.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/multVisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/multVisible.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/plus.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/random.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/rect.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/settings.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/square.svg -------------------------------------------------------------------------------- /packages/app/src/assets/svg/visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/assets/svg/visible.svg -------------------------------------------------------------------------------- /packages/app/src/components/CategoryFilter/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/CategoryFilter/index.less -------------------------------------------------------------------------------- /packages/app/src/components/CategoryFilter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/CategoryFilter/index.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DatasetItem/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/DatasetItem/index.less -------------------------------------------------------------------------------- /packages/app/src/components/DatasetItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/DatasetItem/index.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DisplayOptions/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/DisplayOptions/index.less -------------------------------------------------------------------------------- /packages/app/src/components/DisplayOptions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/DisplayOptions/index.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DropdownSelector/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/DropdownSelector/index.less -------------------------------------------------------------------------------- /packages/app/src/components/DropdownSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/DropdownSelector/index.tsx -------------------------------------------------------------------------------- /packages/app/src/components/ImportImgsForm/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/ImportImgsForm/index.less -------------------------------------------------------------------------------- /packages/app/src/components/ImportImgsForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/ImportImgsForm/index.tsx -------------------------------------------------------------------------------- /packages/app/src/components/LabelOptions/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/LabelOptions/index.less -------------------------------------------------------------------------------- /packages/app/src/components/LabelOptions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/LabelOptions/index.tsx -------------------------------------------------------------------------------- /packages/app/src/components/LoginModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/LoginModal/index.tsx -------------------------------------------------------------------------------- /packages/app/src/components/UploadImageList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/UploadImageList/index.less -------------------------------------------------------------------------------- /packages/app/src/components/UploadImageList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/components/UploadImageList/index.tsx -------------------------------------------------------------------------------- /packages/app/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/constants/index.ts -------------------------------------------------------------------------------- /packages/app/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/favicon.png -------------------------------------------------------------------------------- /packages/app/src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/global.less -------------------------------------------------------------------------------- /packages/app/src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/global.ts -------------------------------------------------------------------------------- /packages/app/src/layouts/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/layouts/index.less -------------------------------------------------------------------------------- /packages/app/src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/layouts/index.tsx -------------------------------------------------------------------------------- /packages/app/src/layouts/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/layouts/menu.tsx -------------------------------------------------------------------------------- /packages/app/src/locales/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/locales/en-US.ts -------------------------------------------------------------------------------- /packages/app/src/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/locales/zh-CN.ts -------------------------------------------------------------------------------- /packages/app/src/models/dataset/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/models/dataset/common.tsx -------------------------------------------------------------------------------- /packages/app/src/models/dataset/comparisons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/models/dataset/comparisons.ts -------------------------------------------------------------------------------- /packages/app/src/models/dataset/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/models/dataset/filters.ts -------------------------------------------------------------------------------- /packages/app/src/models/dataset/flag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/models/dataset/flag.ts -------------------------------------------------------------------------------- /packages/app/src/models/dataset/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/models/dataset/type.ts -------------------------------------------------------------------------------- /packages/app/src/models/datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/models/datasets.ts -------------------------------------------------------------------------------- /packages/app/src/models/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/models/global.ts -------------------------------------------------------------------------------- /packages/app/src/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/models/user.ts -------------------------------------------------------------------------------- /packages/app/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/404.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Annotator/components/FormModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Annotator/components/FormModal/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Annotator/components/FormModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Annotator/components/FormModal/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Annotator/components/ImageList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Annotator/components/ImageList/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Annotator/components/ImageList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Annotator/components/ImageList/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Annotator/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Annotator/constants.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Annotator/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Annotator/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Annotator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Annotator/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Annotator/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Annotator/model.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/components/ComparisonsBar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/components/ComparisonsBar/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/components/ComparisonsBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/components/ComparisonsBar/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/components/DiffLabelsTip/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/components/DiffLabelsTip/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/components/DiffLabelsTip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/components/DiffLabelsTip/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/components/Header/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/components/Header/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/components/Header/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Dataset/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Dataset/model.ts -------------------------------------------------------------------------------- /packages/app/src/pages/DatasetList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/DatasetList/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/DatasetList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/DatasetList/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/DatasetList/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/DatasetList/model.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/Datasets/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/Datasets/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/Datasets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/Datasets/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/Datasets/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/Datasets/model.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/FlagTool/components/FlagToolsBar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/FlagTool/components/FlagToolsBar/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/FlagTool/components/FlagToolsBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/FlagTool/components/FlagToolsBar/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/FlagTool/components/Header/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/FlagTool/components/Header/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/FlagTool/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/FlagTool/components/Header/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/FlagTool/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/FlagTool/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/FlagTool/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/FlagTool/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/FlagTool/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/FlagTool/model.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Lab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Lab/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Login/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Login/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/Detail/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/Detail/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Project/Detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/Detail/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/Workspace/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/Workspace/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Project/Workspace/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/Workspace/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/ProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/ProgressBar/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/ProjectEditModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/ProjectEditModal/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/ProjectExportModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/ProjectExportModal/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/ProjectExportModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/ProjectExportModal/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/ProjectInfoModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/ProjectInfoModal/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/TableTags/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/TableTags/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/TableTags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/TableTags/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/TaskAssignModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/TaskAssignModal/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/TaskDetailModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/TaskDetailModal/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/TaskProgress/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/TaskProgress/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Project/components/TaskProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/components/TaskProgress/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/constants.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Project/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/index.less -------------------------------------------------------------------------------- /packages/app/src/pages/Project/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/index.tsx -------------------------------------------------------------------------------- /packages/app/src/pages/Project/models/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/models/auth.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Project/models/detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/models/detail.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Project/models/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/models/list.ts -------------------------------------------------------------------------------- /packages/app/src/pages/Project/models/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/pages/Project/models/workspace.ts -------------------------------------------------------------------------------- /packages/app/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/routes.ts -------------------------------------------------------------------------------- /packages/app/src/services/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/services/common.ts -------------------------------------------------------------------------------- /packages/app/src/services/dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/services/dataset.ts -------------------------------------------------------------------------------- /packages/app/src/services/errorCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/services/errorCode.ts -------------------------------------------------------------------------------- /packages/app/src/services/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/services/project.ts -------------------------------------------------------------------------------- /packages/app/src/services/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/services/user.ts -------------------------------------------------------------------------------- /packages/app/src/types/annotator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/types/annotator.ts -------------------------------------------------------------------------------- /packages/app/src/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/types/api.ts -------------------------------------------------------------------------------- /packages/app/src/types/coco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/types/coco.ts -------------------------------------------------------------------------------- /packages/app/src/types/dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/types/dataset.ts -------------------------------------------------------------------------------- /packages/app/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/types/index.ts -------------------------------------------------------------------------------- /packages/app/src/types/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/types/project.ts -------------------------------------------------------------------------------- /packages/app/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/typings.d.ts -------------------------------------------------------------------------------- /packages/app/src/utils/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/utils/adapter.ts -------------------------------------------------------------------------------- /packages/app/src/utils/datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/utils/datasets.ts -------------------------------------------------------------------------------- /packages/app/src/wrappers/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/src/wrappers/auth.tsx -------------------------------------------------------------------------------- /packages/app/tests/components/DropdownSelector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/components/DropdownSelector.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/components/__snapshots__/DropdownSelector.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/components/__snapshots__/DropdownSelector.test.tsx.snap -------------------------------------------------------------------------------- /packages/app/tests/file-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/file-transform.js -------------------------------------------------------------------------------- /packages/app/tests/hooks/useWindowResize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/hooks/useWindowResize.test.ts -------------------------------------------------------------------------------- /packages/app/tests/jest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/jest-setup.ts -------------------------------------------------------------------------------- /packages/app/tests/layouts/__snapshots__/layout.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/layouts/__snapshots__/layout.test.tsx.snap -------------------------------------------------------------------------------- /packages/app/tests/layouts/__snapshots__/menu.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/layouts/__snapshots__/menu.test.tsx.snap -------------------------------------------------------------------------------- /packages/app/tests/layouts/layout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/layouts/layout.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/layouts/menu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/layouts/menu.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/models/dataset.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/models/dataset.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/models/datasets.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/models/datasets.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/models/global.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/models/global.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/models/user.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/models/user.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/pages/404.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/pages/404.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/pages/DatasetList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/pages/DatasetList.test.tsx -------------------------------------------------------------------------------- /packages/app/tests/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/test-utils.tsx -------------------------------------------------------------------------------- /packages/app/tests/utils/digit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/utils/digit.test.ts -------------------------------------------------------------------------------- /packages/app/tests/utils/file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/utils/file.test.ts -------------------------------------------------------------------------------- /packages/app/tests/utils/url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tests/utils/url.test.ts -------------------------------------------------------------------------------- /packages/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/app/tsconfig.json -------------------------------------------------------------------------------- /packages/components/.dumirc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/.dumirc.ts -------------------------------------------------------------------------------- /packages/components/.fatherrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/.fatherrc.ts -------------------------------------------------------------------------------- /packages/components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/.gitignore -------------------------------------------------------------------------------- /packages/components/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/LICENSE -------------------------------------------------------------------------------- /packages/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/README.md -------------------------------------------------------------------------------- /packages/components/docs/guide.md: -------------------------------------------------------------------------------- 1 | This is a guide example. 2 | -------------------------------------------------------------------------------- /packages/components/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/docs/index.md -------------------------------------------------------------------------------- /packages/components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/package.json -------------------------------------------------------------------------------- /packages/components/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/public/favicon.png -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/add-prompt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/add-prompt.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/attribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/attribute.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/brush-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/brush-add.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/brush-erase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/brush-erase.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/custom.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/delete_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/delete_all.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/displayReset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/displayReset.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/docs.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/doubleRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/doubleRight.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/downArror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/downArror.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/download.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/drag.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/edge-stitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/edge-stitch.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/house.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/img-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/img-broken.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/imgSetting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/imgSetting.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/keyboard-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/keyboard-down.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/keyboard.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/label.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/layer.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/logo.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/magic-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/magic-box.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/magic-brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/magic-brush.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/magic-click.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/magic-click.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/magic.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/mask-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/mask-ai.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/mask.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/mouse-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/mouse-left.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/mouse-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/mouse-right.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/palette.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/pen-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/pen-add.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/pen-erase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/pen-erase.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/play-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/play-next.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/play-pre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/play-pre.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/play-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/play-stop.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/play.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/point.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/polygon-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/polygon-ai.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/polygon.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/rectangle-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/rectangle-ai.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/rectangle.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/redo.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/remove-prompt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/remove-prompt.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/repeat.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/review.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/segment-everything.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/segment-everything.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/settings-sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/settings-sliders.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/skeleton-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/skeleton-ai.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/skeleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/skeleton.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/text-prompt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/text-prompt.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/undo.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/visual-prompt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/visual-prompt.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/assets/zoomResize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/assets/zoomResize.svg -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/AttributeEditor/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/AttributeEditor/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/AttributeEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/AttributeEditor/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/AttributesForm/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/AttributesForm/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/AttributesForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/AttributesForm/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/CategoryCreator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/CategoryCreator/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/Classification/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/Classification/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/Classification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/Classification/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/DisplaySettings/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/DisplaySettings/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/DisplaySettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/DisplaySettings/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/EditorStatus/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/EditorStatus/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/EditorStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/EditorStatus/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/FloatWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/FloatWrapper/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/HighlightText/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/HighlightText/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/HighlightText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/HighlightText/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ImageView/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ImageView/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ImageView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ImageView/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/LabelSelector/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/LabelSelector/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/LabelSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/LabelSelector/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ModelSelectModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ModelSelectModal/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ModelSelectModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ModelSelectModal/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ModelSelector/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ModelSelector/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ModelSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ModelSelector/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ObjectList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ObjectList/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ObjectList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ObjectList/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/PointItem/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/PointItem/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/PointItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/PointItem/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/PointsEditModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/PointsEditModal/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/PointsEditModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/PointsEditModal/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/PopoverMenu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/PopoverMenu/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/PopoverMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/PopoverMenu/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/SegConfirmModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/SegConfirmModal/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/SegConfirmModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/SegConfirmModal/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ShortcutsInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ShortcutsInfo/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/ShortcutsInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/ShortcutsInfo/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/SliderToolBar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/SliderToolBar/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/SliderToolBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/SliderToolBar/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/SmartAnnotationControl/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/SmartAnnotationControl/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/SmartAnnotationControl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/SmartAnnotationControl/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/SubToolBar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/SubToolBar/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/SubToolBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/SubToolBar/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/TopPagination/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/TopPagination/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/TopPagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/TopPagination/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/TopTools/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/TopTools/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/components/TopTools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/components/TopTools/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/constants/index.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/constants/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/constants/render.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/constants/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/constants/shortcuts.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/editor.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useActions.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useAiModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useAiModels.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useAttributes.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useCanvasContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useCanvasContainer.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useCanvasRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useCanvasRender.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useColor.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useDataEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useDataEffect.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useHistory.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useLabels.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useMouseCursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useMouseCursor.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useMouseEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useMouseEvents.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useObjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useObjects.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/usePreviousState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/usePreviousState.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useShortcuts.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useSubtools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useSubtools.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useToolActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useToolActions.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useTopTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useTopTools.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/hooks/useTranslate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/hooks/useTranslate.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/index.less -------------------------------------------------------------------------------- /packages/components/src/Annotator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/preview.tsx -------------------------------------------------------------------------------- /packages/components/src/Annotator/sevices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/sevices/index.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/tools/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/tools/base.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/tools/useMask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/tools/useMask.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/tools/useMatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/tools/useMatting.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/tools/usePoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/tools/usePoint.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/tools/usePolygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/tools/usePolygon.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/tools/usePolyline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/tools/usePolyline.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/tools/useRectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/tools/useRectangle.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/tools/useSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/tools/useSkeleton.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/type.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/utils/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/utils/base64.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/utils/color.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/utils/compute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/utils/compute.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/utils/draw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/utils/draw.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/utils/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/utils/verify.ts -------------------------------------------------------------------------------- /packages/components/src/Annotator/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Annotator/view.tsx -------------------------------------------------------------------------------- /packages/components/src/ColumnSettings/assets/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/ColumnSettings/assets/minus.svg -------------------------------------------------------------------------------- /packages/components/src/ColumnSettings/assets/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/ColumnSettings/assets/plus.svg -------------------------------------------------------------------------------- /packages/components/src/ColumnSettings/assets/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/ColumnSettings/assets/settings.svg -------------------------------------------------------------------------------- /packages/components/src/ColumnSettings/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/ColumnSettings/index.less -------------------------------------------------------------------------------- /packages/components/src/ColumnSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/ColumnSettings/index.tsx -------------------------------------------------------------------------------- /packages/components/src/DynamicPagination/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/DynamicPagination/index.less -------------------------------------------------------------------------------- /packages/components/src/DynamicPagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/DynamicPagination/index.tsx -------------------------------------------------------------------------------- /packages/components/src/GlobalLoading/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/GlobalLoading/demo.tsx -------------------------------------------------------------------------------- /packages/components/src/GlobalLoading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/GlobalLoading/index.md -------------------------------------------------------------------------------- /packages/components/src/GlobalLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/GlobalLoading/index.tsx -------------------------------------------------------------------------------- /packages/components/src/LangSelector/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/LangSelector/demo.tsx -------------------------------------------------------------------------------- /packages/components/src/LangSelector/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/LangSelector/index.less -------------------------------------------------------------------------------- /packages/components/src/LangSelector/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/LangSelector/index.md -------------------------------------------------------------------------------- /packages/components/src/LangSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/LangSelector/index.tsx -------------------------------------------------------------------------------- /packages/components/src/MobileAlert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/MobileAlert/index.tsx -------------------------------------------------------------------------------- /packages/components/src/NotFoundTip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/NotFoundTip/index.tsx -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/components/ImageFilter/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/components/ImageFilter/index.less -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/components/ImageFilter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/components/ImageFilter/index.tsx -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/components/ImageList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/components/ImageList/index.less -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/components/ImageList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/components/ImageList/index.tsx -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/components/QuickstartModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/components/QuickstartModal/index.less -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/components/QuickstartModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/components/QuickstartModal/index.tsx -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/hooks/useQuickLabelModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/hooks/useQuickLabelModel.ts -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/index.less -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/index.tsx -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/type.ts -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/utils/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/utils/adapter.ts -------------------------------------------------------------------------------- /packages/components/src/QuickLabel/utils/idConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/QuickLabel/utils/idConverter.ts -------------------------------------------------------------------------------- /packages/components/src/RunningErrorTip/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/RunningErrorTip/demo.tsx -------------------------------------------------------------------------------- /packages/components/src/RunningErrorTip/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/RunningErrorTip/index.md -------------------------------------------------------------------------------- /packages/components/src/RunningErrorTip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/RunningErrorTip/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Upload/assets/checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Upload/assets/checked.svg -------------------------------------------------------------------------------- /packages/components/src/Upload/assets/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Upload/assets/upload.svg -------------------------------------------------------------------------------- /packages/components/src/Upload/components/FilePreviewList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Upload/components/FilePreviewList/index.less -------------------------------------------------------------------------------- /packages/components/src/Upload/components/FilePreviewList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Upload/components/FilePreviewList/index.tsx -------------------------------------------------------------------------------- /packages/components/src/Upload/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Upload/index.less -------------------------------------------------------------------------------- /packages/components/src/Upload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/Upload/index.tsx -------------------------------------------------------------------------------- /packages/components/src/UploadPreAnno/assets/upload_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/UploadPreAnno/assets/upload_file.svg -------------------------------------------------------------------------------- /packages/components/src/UploadPreAnno/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/UploadPreAnno/index.less -------------------------------------------------------------------------------- /packages/components/src/UploadPreAnno/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/UploadPreAnno/index.tsx -------------------------------------------------------------------------------- /packages/components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/index.ts -------------------------------------------------------------------------------- /packages/components/src/locales/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/locales/en-US.ts -------------------------------------------------------------------------------- /packages/components/src/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/src/locales/zh-CN.ts -------------------------------------------------------------------------------- /packages/components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/components/tsconfig.json -------------------------------------------------------------------------------- /packages/hooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/hooks/package.json -------------------------------------------------------------------------------- /packages/hooks/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/hooks/src/index.ts -------------------------------------------------------------------------------- /packages/hooks/src/usePageModelLifeCycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/hooks/src/usePageModelLifeCycle.ts -------------------------------------------------------------------------------- /packages/hooks/src/useWindowResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/hooks/src/useWindowResize.ts -------------------------------------------------------------------------------- /packages/hooks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/hooks/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/src/digit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/utils/src/digit.ts -------------------------------------------------------------------------------- /packages/utils/src/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/utils/src/file.ts -------------------------------------------------------------------------------- /packages/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/utils/src/index.ts -------------------------------------------------------------------------------- /packages/utils/src/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/utils/src/locale.ts -------------------------------------------------------------------------------- /packages/utils/src/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/utils/src/url.ts -------------------------------------------------------------------------------- /packages/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/packages/utils/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | The tests module of DDS. 3 | """ 4 | -------------------------------------------------------------------------------- /tests/benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | The benchmark tests for DDS. 3 | """ 4 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/dds.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/tests/dds.test.yaml -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | The integration tests for DDS. 3 | """ 4 | -------------------------------------------------------------------------------- /tests/integration/test_label_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/tests/integration/test_label_project.py -------------------------------------------------------------------------------- /tests/resource/image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/tests/resource/image/1.jpg -------------------------------------------------------------------------------- /tests/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/tests/seed.py -------------------------------------------------------------------------------- /tests/unittest/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | The unittests for DDS. 3 | """ -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/deepdataspace/HEAD/typings.d.ts --------------------------------------------------------------------------------