supervisely 6.73.410__py3-none-any.whl → 6.73.470__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of supervisely might be problematic. Click here for more details.
- supervisely/__init__.py +136 -1
- supervisely/_utils.py +81 -0
- supervisely/annotation/json_geometries_map.py +2 -0
- supervisely/annotation/label.py +80 -3
- supervisely/api/annotation_api.py +9 -9
- supervisely/api/api.py +67 -43
- supervisely/api/app_api.py +72 -5
- supervisely/api/dataset_api.py +108 -33
- supervisely/api/entity_annotation/figure_api.py +113 -49
- supervisely/api/image_api.py +82 -0
- supervisely/api/module_api.py +10 -0
- supervisely/api/nn/deploy_api.py +15 -9
- supervisely/api/nn/ecosystem_models_api.py +201 -0
- supervisely/api/nn/neural_network_api.py +12 -3
- supervisely/api/pointcloud/pointcloud_api.py +38 -0
- supervisely/api/pointcloud/pointcloud_episode_annotation_api.py +3 -0
- supervisely/api/project_api.py +213 -6
- supervisely/api/task_api.py +11 -1
- supervisely/api/video/video_annotation_api.py +4 -2
- supervisely/api/video/video_api.py +79 -1
- supervisely/api/video/video_figure_api.py +24 -11
- supervisely/api/volume/volume_api.py +38 -0
- supervisely/app/__init__.py +1 -1
- supervisely/app/content.py +14 -6
- supervisely/app/fastapi/__init__.py +1 -0
- supervisely/app/fastapi/custom_static_files.py +1 -1
- supervisely/app/fastapi/multi_user.py +88 -0
- supervisely/app/fastapi/subapp.py +175 -42
- supervisely/app/fastapi/templating.py +1 -1
- supervisely/app/fastapi/websocket.py +77 -9
- supervisely/app/singleton.py +21 -0
- supervisely/app/v1/app_service.py +18 -2
- supervisely/app/v1/constants.py +7 -1
- supervisely/app/widgets/__init__.py +11 -1
- supervisely/app/widgets/agent_selector/template.html +1 -0
- supervisely/app/widgets/card/card.py +20 -0
- supervisely/app/widgets/dataset_thumbnail/dataset_thumbnail.py +11 -2
- supervisely/app/widgets/dataset_thumbnail/template.html +3 -1
- supervisely/app/widgets/deploy_model/deploy_model.py +750 -0
- supervisely/app/widgets/dialog/dialog.py +12 -0
- supervisely/app/widgets/dialog/template.html +2 -1
- supervisely/app/widgets/dropdown_checkbox_selector/__init__.py +0 -0
- supervisely/app/widgets/dropdown_checkbox_selector/dropdown_checkbox_selector.py +87 -0
- supervisely/app/widgets/dropdown_checkbox_selector/template.html +12 -0
- supervisely/app/widgets/ecosystem_model_selector/__init__.py +0 -0
- supervisely/app/widgets/ecosystem_model_selector/ecosystem_model_selector.py +195 -0
- supervisely/app/widgets/experiment_selector/experiment_selector.py +454 -263
- supervisely/app/widgets/fast_table/fast_table.py +713 -126
- supervisely/app/widgets/fast_table/script.js +492 -95
- supervisely/app/widgets/fast_table/style.css +54 -0
- supervisely/app/widgets/fast_table/template.html +45 -5
- supervisely/app/widgets/heatmap/__init__.py +0 -0
- supervisely/app/widgets/heatmap/heatmap.py +523 -0
- supervisely/app/widgets/heatmap/script.js +378 -0
- supervisely/app/widgets/heatmap/style.css +227 -0
- supervisely/app/widgets/heatmap/template.html +21 -0
- supervisely/app/widgets/input_tag/input_tag.py +102 -15
- supervisely/app/widgets/input_tag_list/__init__.py +0 -0
- supervisely/app/widgets/input_tag_list/input_tag_list.py +274 -0
- supervisely/app/widgets/input_tag_list/template.html +70 -0
- supervisely/app/widgets/radio_table/radio_table.py +10 -2
- supervisely/app/widgets/radio_tabs/radio_tabs.py +18 -2
- supervisely/app/widgets/radio_tabs/template.html +1 -0
- supervisely/app/widgets/select/select.py +6 -4
- supervisely/app/widgets/select_dataset/select_dataset.py +6 -0
- supervisely/app/widgets/select_dataset_tree/select_dataset_tree.py +83 -7
- supervisely/app/widgets/table/table.py +68 -13
- supervisely/app/widgets/tabs/tabs.py +22 -6
- supervisely/app/widgets/tabs/template.html +5 -1
- supervisely/app/widgets/transfer/style.css +3 -0
- supervisely/app/widgets/transfer/template.html +3 -1
- supervisely/app/widgets/transfer/transfer.py +48 -45
- supervisely/app/widgets/tree_select/tree_select.py +2 -0
- supervisely/convert/image/csv/csv_converter.py +24 -15
- supervisely/convert/pointcloud/nuscenes_conv/nuscenes_converter.py +43 -41
- supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_converter.py +75 -51
- supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_helper.py +137 -124
- supervisely/convert/video/video_converter.py +2 -2
- supervisely/geometry/polyline_3d.py +110 -0
- supervisely/io/env.py +161 -1
- supervisely/nn/artifacts/__init__.py +1 -1
- supervisely/nn/artifacts/artifacts.py +10 -2
- supervisely/nn/artifacts/detectron2.py +1 -0
- supervisely/nn/artifacts/hrda.py +1 -0
- supervisely/nn/artifacts/mmclassification.py +20 -0
- supervisely/nn/artifacts/mmdetection.py +5 -3
- supervisely/nn/artifacts/mmsegmentation.py +1 -0
- supervisely/nn/artifacts/ritm.py +1 -0
- supervisely/nn/artifacts/rtdetr.py +1 -0
- supervisely/nn/artifacts/unet.py +1 -0
- supervisely/nn/artifacts/utils.py +3 -0
- supervisely/nn/artifacts/yolov5.py +2 -0
- supervisely/nn/artifacts/yolov8.py +1 -0
- supervisely/nn/benchmark/semantic_segmentation/metric_provider.py +18 -18
- supervisely/nn/experiments.py +9 -0
- supervisely/nn/inference/cache.py +37 -17
- supervisely/nn/inference/gui/serving_gui_template.py +39 -13
- supervisely/nn/inference/inference.py +953 -211
- supervisely/nn/inference/inference_request.py +15 -8
- supervisely/nn/inference/instance_segmentation/instance_segmentation.py +1 -0
- supervisely/nn/inference/object_detection/object_detection.py +1 -0
- supervisely/nn/inference/predict_app/__init__.py +0 -0
- supervisely/nn/inference/predict_app/gui/__init__.py +0 -0
- supervisely/nn/inference/predict_app/gui/classes_selector.py +160 -0
- supervisely/nn/inference/predict_app/gui/gui.py +915 -0
- supervisely/nn/inference/predict_app/gui/input_selector.py +344 -0
- supervisely/nn/inference/predict_app/gui/model_selector.py +77 -0
- supervisely/nn/inference/predict_app/gui/output_selector.py +179 -0
- supervisely/nn/inference/predict_app/gui/preview.py +93 -0
- supervisely/nn/inference/predict_app/gui/settings_selector.py +881 -0
- supervisely/nn/inference/predict_app/gui/tags_selector.py +110 -0
- supervisely/nn/inference/predict_app/gui/utils.py +399 -0
- supervisely/nn/inference/predict_app/predict_app.py +176 -0
- supervisely/nn/inference/session.py +47 -39
- supervisely/nn/inference/tracking/bbox_tracking.py +5 -1
- supervisely/nn/inference/tracking/point_tracking.py +5 -1
- supervisely/nn/inference/tracking/tracker_interface.py +4 -0
- supervisely/nn/inference/uploader.py +9 -5
- supervisely/nn/model/model_api.py +44 -22
- supervisely/nn/model/prediction.py +15 -1
- supervisely/nn/model/prediction_session.py +70 -14
- supervisely/nn/prediction_dto.py +7 -0
- supervisely/nn/tracker/__init__.py +6 -8
- supervisely/nn/tracker/base_tracker.py +54 -0
- supervisely/nn/tracker/botsort/__init__.py +1 -0
- supervisely/nn/tracker/botsort/botsort_config.yaml +30 -0
- supervisely/nn/tracker/botsort/osnet_reid/__init__.py +0 -0
- supervisely/nn/tracker/botsort/osnet_reid/osnet.py +566 -0
- supervisely/nn/tracker/botsort/osnet_reid/osnet_reid_interface.py +88 -0
- supervisely/nn/tracker/botsort/tracker/__init__.py +0 -0
- supervisely/nn/tracker/{bot_sort → botsort/tracker}/basetrack.py +1 -2
- supervisely/nn/tracker/{utils → botsort/tracker}/gmc.py +51 -59
- supervisely/nn/tracker/{deep_sort/deep_sort → botsort/tracker}/kalman_filter.py +71 -33
- supervisely/nn/tracker/botsort/tracker/matching.py +202 -0
- supervisely/nn/tracker/{bot_sort/bot_sort.py → botsort/tracker/mc_bot_sort.py} +68 -81
- supervisely/nn/tracker/botsort_tracker.py +273 -0
- supervisely/nn/tracker/calculate_metrics.py +264 -0
- supervisely/nn/tracker/utils.py +273 -0
- supervisely/nn/tracker/visualize.py +520 -0
- supervisely/nn/training/gui/gui.py +152 -49
- supervisely/nn/training/gui/hyperparameters_selector.py +1 -1
- supervisely/nn/training/gui/model_selector.py +8 -6
- supervisely/nn/training/gui/train_val_splits_selector.py +144 -71
- supervisely/nn/training/gui/training_artifacts.py +3 -1
- supervisely/nn/training/train_app.py +225 -46
- supervisely/project/pointcloud_episode_project.py +12 -8
- supervisely/project/pointcloud_project.py +12 -8
- supervisely/project/project.py +221 -75
- supervisely/template/experiment/experiment.html.jinja +105 -55
- supervisely/template/experiment/experiment_generator.py +258 -112
- supervisely/template/experiment/header.html.jinja +31 -13
- supervisely/template/experiment/sly-style.css +7 -2
- supervisely/versions.json +3 -1
- supervisely/video/sampling.py +42 -20
- supervisely/video/video.py +41 -12
- supervisely/video_annotation/video_figure.py +38 -4
- supervisely/volume/stl_converter.py +2 -0
- supervisely/worker_api/agent_rpc.py +24 -1
- supervisely/worker_api/rpc_servicer.py +31 -7
- {supervisely-6.73.410.dist-info → supervisely-6.73.470.dist-info}/METADATA +22 -14
- {supervisely-6.73.410.dist-info → supervisely-6.73.470.dist-info}/RECORD +167 -148
- supervisely_lib/__init__.py +6 -1
- supervisely/app/widgets/experiment_selector/style.css +0 -27
- supervisely/app/widgets/experiment_selector/template.html +0 -61
- supervisely/nn/tracker/bot_sort/__init__.py +0 -21
- supervisely/nn/tracker/bot_sort/fast_reid_interface.py +0 -152
- supervisely/nn/tracker/bot_sort/matching.py +0 -127
- supervisely/nn/tracker/bot_sort/sly_tracker.py +0 -401
- supervisely/nn/tracker/deep_sort/__init__.py +0 -6
- supervisely/nn/tracker/deep_sort/deep_sort/__init__.py +0 -1
- supervisely/nn/tracker/deep_sort/deep_sort/detection.py +0 -49
- supervisely/nn/tracker/deep_sort/deep_sort/iou_matching.py +0 -81
- supervisely/nn/tracker/deep_sort/deep_sort/linear_assignment.py +0 -202
- supervisely/nn/tracker/deep_sort/deep_sort/nn_matching.py +0 -176
- supervisely/nn/tracker/deep_sort/deep_sort/track.py +0 -166
- supervisely/nn/tracker/deep_sort/deep_sort/tracker.py +0 -145
- supervisely/nn/tracker/deep_sort/deep_sort.py +0 -301
- supervisely/nn/tracker/deep_sort/generate_clip_detections.py +0 -90
- supervisely/nn/tracker/deep_sort/preprocessing.py +0 -70
- supervisely/nn/tracker/deep_sort/sly_tracker.py +0 -273
- supervisely/nn/tracker/tracker.py +0 -285
- supervisely/nn/tracker/utils/kalman_filter.py +0 -492
- supervisely/nn/tracking/__init__.py +0 -1
- supervisely/nn/tracking/boxmot.py +0 -114
- supervisely/nn/tracking/tracking.py +0 -24
- /supervisely/{nn/tracker/utils → app/widgets/deploy_model}/__init__.py +0 -0
- {supervisely-6.73.410.dist-info → supervisely-6.73.470.dist-info}/LICENSE +0 -0
- {supervisely-6.73.410.dist-info → supervisely-6.73.470.dist-info}/WHEEL +0 -0
- {supervisely-6.73.410.dist-info → supervisely-6.73.470.dist-info}/entry_points.txt +0 -0
- {supervisely-6.73.410.dist-info → supervisely-6.73.470.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: supervisely
|
|
3
|
-
Version: 6.73.
|
|
3
|
+
Version: 6.73.470
|
|
4
4
|
Summary: Supervisely Python SDK.
|
|
5
5
|
Home-page: https://github.com/supervisely/supervisely
|
|
6
6
|
Author: Supervisely
|
|
@@ -21,18 +21,17 @@ Requires-Python: >=3.8
|
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
23
|
Requires-Dist: cachetools<=5.5.0,>=4.2.3
|
|
24
|
-
Requires-Dist: numpy
|
|
24
|
+
Requires-Dist: numpy<=2.3.3,>=1.19
|
|
25
25
|
Requires-Dist: opencv-python<5.0.0.0,>=4.6.0.66
|
|
26
26
|
Requires-Dist: PTable<1.0.0,>=0.9.2
|
|
27
|
-
Requires-Dist: pillow<=10.
|
|
28
|
-
Requires-Dist: protobuf<=3.20.3,>=3.19.5
|
|
27
|
+
Requires-Dist: pillow<=10.4.0,>=5.4.1
|
|
29
28
|
Requires-Dist: python-json-logger<3.0.0,>=0.1.11
|
|
30
29
|
Requires-Dist: requests<3.0.0,>=2.27.1
|
|
31
30
|
Requires-Dist: requests-toolbelt>=0.9.1
|
|
32
|
-
Requires-Dist: Shapely<=2.
|
|
31
|
+
Requires-Dist: Shapely<=2.1.2,>=1.7.1
|
|
33
32
|
Requires-Dist: bidict<1.0.0,>=0.21.2
|
|
34
33
|
Requires-Dist: varname<1.0.0,>=0.8.1
|
|
35
|
-
Requires-Dist: python-dotenv<=1.0.
|
|
34
|
+
Requires-Dist: python-dotenv<=1.0.1,>=0.19.2
|
|
36
35
|
Requires-Dist: pynrrd<1.0.0,>=0.4.2
|
|
37
36
|
Requires-Dist: SimpleITK<=2.4.1.0,>=2.1.1.2
|
|
38
37
|
Requires-Dist: pydicom<3.0.0,>=2.3.0
|
|
@@ -40,9 +39,9 @@ Requires-Dist: stringcase<2.0.0,>=1.2.0
|
|
|
40
39
|
Requires-Dist: python-magic<1.0.0,>=0.4.25
|
|
41
40
|
Requires-Dist: trimesh<=4.5.0,>=3.11.2
|
|
42
41
|
Requires-Dist: uvicorn[standard]<1.0.0,>=0.18.2
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist: fastapi<=0.
|
|
42
|
+
Requires-Dist: starlette<=0.47.3
|
|
43
|
+
Requires-Dist: pydantic<=2.12.3,>=1.7.4
|
|
44
|
+
Requires-Dist: fastapi<=0.119.1,>=0.103.1
|
|
46
45
|
Requires-Dist: websockets<=13.1,>=10.3
|
|
47
46
|
Requires-Dist: jinja2<4.0.0,>=3.0.3
|
|
48
47
|
Requires-Dist: psutil<6.0.0,>=5.9.0
|
|
@@ -50,7 +49,7 @@ Requires-Dist: jsonpatch<2.0,>=1.32
|
|
|
50
49
|
Requires-Dist: MarkupSafe<3.0.0,>=2.1.1
|
|
51
50
|
Requires-Dist: arel<1.0.0,>=0.2.0
|
|
52
51
|
Requires-Dist: tqdm<5.0.0,>=4.62.3
|
|
53
|
-
Requires-Dist: pandas<=2.
|
|
52
|
+
Requires-Dist: pandas<=2.3.3,>=1.1.3
|
|
54
53
|
Requires-Dist: async-asgi-testclient
|
|
55
54
|
Requires-Dist: PyYAML>=5.4.0
|
|
56
55
|
Requires-Dist: distinctipy
|
|
@@ -63,14 +62,17 @@ Requires-Dist: giturlparse
|
|
|
63
62
|
Requires-Dist: rich
|
|
64
63
|
Requires-Dist: click
|
|
65
64
|
Requires-Dist: imutils==0.5.4
|
|
66
|
-
Requires-Dist: urllib3<=2.2.
|
|
65
|
+
Requires-Dist: urllib3<=2.2.3,>=1.26.15
|
|
67
66
|
Requires-Dist: cacheout==0.14.1
|
|
68
|
-
Requires-Dist: jsonschema<=4.
|
|
67
|
+
Requires-Dist: jsonschema<=4.23.0,>=2.6.0
|
|
69
68
|
Requires-Dist: pyjwt<3.0.0,>=2.1.0
|
|
70
69
|
Requires-Dist: zstd
|
|
71
70
|
Requires-Dist: aiofiles
|
|
72
71
|
Requires-Dist: httpx[http2]==0.27.2
|
|
73
72
|
Requires-Dist: debugpy
|
|
73
|
+
Requires-Dist: setuptools<81.0.0
|
|
74
|
+
Provides-Extra: agent
|
|
75
|
+
Requires-Dist: protobuf<=3.20.3,>=3.19.5; extra == "agent"
|
|
74
76
|
Provides-Extra: apps
|
|
75
77
|
Requires-Dist: uvicorn[standard]<1.0.0,>=0.18.2; extra == "apps"
|
|
76
78
|
Requires-Dist: fastapi<1.0.0,>=0.79.0; extra == "apps"
|
|
@@ -81,10 +83,11 @@ Requires-Dist: jsonpatch<2.0,>=1.32; extra == "apps"
|
|
|
81
83
|
Requires-Dist: MarkupSafe<3.0.0,>=2.1.1; extra == "apps"
|
|
82
84
|
Requires-Dist: arel<1.0.0,>=0.2.0; extra == "apps"
|
|
83
85
|
Requires-Dist: tqdm<5.0.0,>=4.62.3; extra == "apps"
|
|
84
|
-
Requires-Dist: pandas
|
|
86
|
+
Requires-Dist: pandas<=2.3.3,>=1.1.3; extra == "apps"
|
|
85
87
|
Provides-Extra: aug
|
|
86
88
|
Requires-Dist: imgaug<1.0.0,>=0.4.0; extra == "aug"
|
|
87
89
|
Requires-Dist: imagecorruptions<2.0.0,>=1.1.2; extra == "aug"
|
|
90
|
+
Requires-Dist: numpy<2.0.0,>=1.19; extra == "aug"
|
|
88
91
|
Provides-Extra: docs
|
|
89
92
|
Requires-Dist: sphinx==4.4.0; extra == "docs"
|
|
90
93
|
Requires-Dist: jinja2==3.0.3; extra == "docs"
|
|
@@ -100,7 +103,7 @@ Requires-Dist: scikit-image<1.0.0,>=0.17.1; extra == "extras"
|
|
|
100
103
|
Requires-Dist: matplotlib<4.0.0,>=3.3.2; extra == "extras"
|
|
101
104
|
Requires-Dist: pascal-voc-writer<1.0.0,>=0.1.4; extra == "extras"
|
|
102
105
|
Requires-Dist: scipy<2.0.0,>=1.8.0; extra == "extras"
|
|
103
|
-
Requires-Dist: pandas
|
|
106
|
+
Requires-Dist: pandas<=2.3.3,>=1.1.3; extra == "extras"
|
|
104
107
|
Requires-Dist: ruamel.yaml==0.17.21; extra == "extras"
|
|
105
108
|
Provides-Extra: model-benchmark
|
|
106
109
|
Requires-Dist: pycocotools; extra == "model-benchmark"
|
|
@@ -129,6 +132,9 @@ Requires-Dist: faiss-gpu; extra == "tracking"
|
|
|
129
132
|
Requires-Dist: tabulate; extra == "tracking"
|
|
130
133
|
Requires-Dist: tensorboard; extra == "tracking"
|
|
131
134
|
Requires-Dist: decord; extra == "tracking"
|
|
135
|
+
Requires-Dist: gdown; extra == "tracking"
|
|
136
|
+
Requires-Dist: torch; extra == "tracking"
|
|
137
|
+
Requires-Dist: motmetrics; extra == "tracking"
|
|
132
138
|
Provides-Extra: training
|
|
133
139
|
Requires-Dist: pycocotools; extra == "training"
|
|
134
140
|
Requires-Dist: scikit-learn; extra == "training"
|
|
@@ -138,6 +144,8 @@ Requires-Dist: torchvision; extra == "training"
|
|
|
138
144
|
Requires-Dist: tensorboardX; extra == "training"
|
|
139
145
|
Requires-Dist: markdown; extra == "training"
|
|
140
146
|
Requires-Dist: pymdown-extensions; extra == "training"
|
|
147
|
+
Requires-Dist: tbparse; extra == "training"
|
|
148
|
+
Requires-Dist: kaleido==0.2.1; extra == "training"
|
|
141
149
|
|
|
142
150
|
<h1 align="center">
|
|
143
151
|
<a href="https://supervisely.com"><img alt="Supervisely" title="Supervisely" src="https://i.imgur.com/B276eMS.png"></a>
|