supervisely 6.73.452__py3-none-any.whl → 6.73.513__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.
- supervisely/__init__.py +25 -1
- supervisely/annotation/annotation.py +8 -2
- supervisely/annotation/json_geometries_map.py +13 -12
- supervisely/api/annotation_api.py +6 -3
- supervisely/api/api.py +2 -0
- supervisely/api/app_api.py +10 -1
- supervisely/api/dataset_api.py +74 -12
- supervisely/api/entities_collection_api.py +10 -0
- supervisely/api/entity_annotation/figure_api.py +28 -0
- supervisely/api/entity_annotation/object_api.py +3 -3
- supervisely/api/entity_annotation/tag_api.py +63 -12
- supervisely/api/guides_api.py +210 -0
- supervisely/api/image_api.py +4 -0
- supervisely/api/labeling_job_api.py +83 -1
- supervisely/api/labeling_queue_api.py +33 -7
- supervisely/api/module_api.py +5 -0
- supervisely/api/project_api.py +71 -26
- supervisely/api/storage_api.py +3 -1
- supervisely/api/task_api.py +13 -2
- supervisely/api/team_api.py +4 -3
- supervisely/api/video/video_annotation_api.py +119 -3
- supervisely/api/video/video_api.py +65 -14
- supervisely/app/__init__.py +1 -1
- supervisely/app/content.py +23 -7
- supervisely/app/development/development.py +18 -2
- supervisely/app/fastapi/__init__.py +1 -0
- supervisely/app/fastapi/custom_static_files.py +1 -1
- supervisely/app/fastapi/multi_user.py +105 -0
- supervisely/app/fastapi/subapp.py +88 -42
- 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 +6 -0
- supervisely/app/widgets/activity_feed/__init__.py +0 -0
- supervisely/app/widgets/activity_feed/activity_feed.py +239 -0
- supervisely/app/widgets/activity_feed/style.css +78 -0
- supervisely/app/widgets/activity_feed/template.html +22 -0
- supervisely/app/widgets/card/card.py +20 -0
- supervisely/app/widgets/classes_list_selector/classes_list_selector.py +121 -9
- supervisely/app/widgets/classes_list_selector/template.html +60 -93
- supervisely/app/widgets/classes_mapping/classes_mapping.py +13 -12
- supervisely/app/widgets/classes_table/classes_table.py +1 -0
- supervisely/app/widgets/deploy_model/deploy_model.py +56 -35
- supervisely/app/widgets/ecosystem_model_selector/ecosystem_model_selector.py +1 -1
- supervisely/app/widgets/experiment_selector/experiment_selector.py +8 -0
- supervisely/app/widgets/fast_table/fast_table.py +184 -60
- supervisely/app/widgets/fast_table/template.html +1 -1
- supervisely/app/widgets/heatmap/__init__.py +0 -0
- supervisely/app/widgets/heatmap/heatmap.py +564 -0
- supervisely/app/widgets/heatmap/script.js +533 -0
- supervisely/app/widgets/heatmap/style.css +233 -0
- supervisely/app/widgets/heatmap/template.html +21 -0
- supervisely/app/widgets/modal/__init__.py +0 -0
- supervisely/app/widgets/modal/modal.py +198 -0
- supervisely/app/widgets/modal/template.html +10 -0
- supervisely/app/widgets/object_class_view/object_class_view.py +3 -0
- 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 -3
- supervisely/app/widgets/select_class/__init__.py +0 -0
- supervisely/app/widgets/select_class/select_class.py +363 -0
- supervisely/app/widgets/select_class/template.html +50 -0
- supervisely/app/widgets/select_cuda/select_cuda.py +22 -0
- supervisely/app/widgets/select_dataset_tree/select_dataset_tree.py +65 -7
- supervisely/app/widgets/select_tag/__init__.py +0 -0
- supervisely/app/widgets/select_tag/select_tag.py +352 -0
- supervisely/app/widgets/select_tag/template.html +64 -0
- supervisely/app/widgets/select_team/select_team.py +37 -4
- supervisely/app/widgets/select_team/template.html +4 -5
- supervisely/app/widgets/select_user/__init__.py +0 -0
- supervisely/app/widgets/select_user/select_user.py +270 -0
- supervisely/app/widgets/select_user/template.html +13 -0
- supervisely/app/widgets/select_workspace/select_workspace.py +59 -10
- supervisely/app/widgets/select_workspace/template.html +9 -12
- supervisely/app/widgets/table/table.py +68 -13
- supervisely/app/widgets/tree_select/tree_select.py +2 -0
- supervisely/aug/aug.py +6 -2
- supervisely/convert/base_converter.py +1 -0
- supervisely/convert/converter.py +2 -2
- supervisely/convert/image/image_converter.py +3 -1
- supervisely/convert/image/image_helper.py +48 -4
- supervisely/convert/image/label_studio/label_studio_converter.py +2 -0
- supervisely/convert/image/medical2d/medical2d_helper.py +2 -24
- supervisely/convert/image/multispectral/multispectral_converter.py +6 -0
- supervisely/convert/image/pascal_voc/pascal_voc_converter.py +8 -5
- supervisely/convert/image/pascal_voc/pascal_voc_helper.py +7 -0
- supervisely/convert/pointcloud/kitti_3d/kitti_3d_converter.py +33 -3
- supervisely/convert/pointcloud/kitti_3d/kitti_3d_helper.py +12 -5
- supervisely/convert/pointcloud/las/las_converter.py +13 -1
- supervisely/convert/pointcloud/las/las_helper.py +110 -11
- supervisely/convert/pointcloud/nuscenes_conv/nuscenes_converter.py +27 -16
- supervisely/convert/pointcloud/pointcloud_converter.py +91 -3
- supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_converter.py +58 -22
- supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_helper.py +21 -47
- supervisely/convert/video/__init__.py +1 -0
- supervisely/convert/video/multi_view/__init__.py +0 -0
- supervisely/convert/video/multi_view/multi_view.py +543 -0
- supervisely/convert/video/sly/sly_video_converter.py +359 -3
- supervisely/convert/video/video_converter.py +22 -2
- supervisely/convert/volume/dicom/dicom_converter.py +13 -5
- supervisely/convert/volume/dicom/dicom_helper.py +30 -18
- supervisely/geometry/constants.py +1 -0
- supervisely/geometry/geometry.py +4 -0
- supervisely/geometry/helpers.py +5 -1
- supervisely/geometry/oriented_bbox.py +676 -0
- supervisely/geometry/rectangle.py +2 -1
- supervisely/io/env.py +76 -1
- supervisely/io/fs.py +21 -0
- supervisely/nn/benchmark/base_evaluator.py +104 -11
- supervisely/nn/benchmark/instance_segmentation/evaluator.py +1 -8
- supervisely/nn/benchmark/object_detection/evaluator.py +20 -4
- supervisely/nn/benchmark/object_detection/vis_metrics/pr_curve.py +10 -5
- supervisely/nn/benchmark/semantic_segmentation/evaluator.py +34 -16
- supervisely/nn/benchmark/semantic_segmentation/vis_metrics/confusion_matrix.py +1 -1
- supervisely/nn/benchmark/semantic_segmentation/vis_metrics/frequently_confused.py +1 -1
- supervisely/nn/benchmark/semantic_segmentation/vis_metrics/overview.py +1 -1
- supervisely/nn/benchmark/visualization/evaluation_result.py +66 -4
- supervisely/nn/inference/cache.py +43 -18
- supervisely/nn/inference/gui/serving_gui_template.py +5 -2
- supervisely/nn/inference/inference.py +795 -199
- supervisely/nn/inference/inference_request.py +42 -9
- supervisely/nn/inference/predict_app/gui/classes_selector.py +83 -12
- supervisely/nn/inference/predict_app/gui/gui.py +676 -488
- supervisely/nn/inference/predict_app/gui/input_selector.py +205 -26
- supervisely/nn/inference/predict_app/gui/model_selector.py +2 -4
- supervisely/nn/inference/predict_app/gui/output_selector.py +46 -6
- supervisely/nn/inference/predict_app/gui/settings_selector.py +756 -59
- supervisely/nn/inference/predict_app/gui/tags_selector.py +1 -1
- supervisely/nn/inference/predict_app/gui/utils.py +236 -119
- supervisely/nn/inference/predict_app/predict_app.py +2 -2
- supervisely/nn/inference/session.py +43 -35
- supervisely/nn/inference/tracking/bbox_tracking.py +113 -34
- supervisely/nn/inference/tracking/tracker_interface.py +7 -2
- supervisely/nn/inference/uploader.py +139 -12
- supervisely/nn/live_training/__init__.py +7 -0
- supervisely/nn/live_training/api_server.py +111 -0
- supervisely/nn/live_training/artifacts_utils.py +243 -0
- supervisely/nn/live_training/checkpoint_utils.py +229 -0
- supervisely/nn/live_training/dynamic_sampler.py +44 -0
- supervisely/nn/live_training/helpers.py +14 -0
- supervisely/nn/live_training/incremental_dataset.py +146 -0
- supervisely/nn/live_training/live_training.py +497 -0
- supervisely/nn/live_training/loss_plateau_detector.py +111 -0
- supervisely/nn/live_training/request_queue.py +52 -0
- supervisely/nn/model/model_api.py +9 -0
- supervisely/nn/prediction_dto.py +12 -1
- supervisely/nn/tracker/base_tracker.py +11 -1
- supervisely/nn/tracker/botsort/botsort_config.yaml +0 -1
- supervisely/nn/tracker/botsort/tracker/mc_bot_sort.py +7 -4
- supervisely/nn/tracker/botsort_tracker.py +94 -65
- supervisely/nn/tracker/visualize.py +87 -90
- supervisely/nn/training/gui/classes_selector.py +16 -1
- supervisely/nn/training/train_app.py +28 -29
- supervisely/project/data_version.py +115 -51
- supervisely/project/download.py +1 -1
- supervisely/project/pointcloud_episode_project.py +37 -8
- supervisely/project/pointcloud_project.py +30 -2
- supervisely/project/project.py +14 -2
- supervisely/project/project_meta.py +27 -1
- supervisely/project/project_settings.py +32 -18
- supervisely/project/versioning/__init__.py +1 -0
- supervisely/project/versioning/common.py +20 -0
- supervisely/project/versioning/schema_fields.py +35 -0
- supervisely/project/versioning/video_schema.py +221 -0
- supervisely/project/versioning/volume_schema.py +87 -0
- supervisely/project/video_project.py +717 -15
- supervisely/project/volume_project.py +623 -5
- supervisely/template/experiment/experiment.html.jinja +4 -4
- supervisely/template/experiment/experiment_generator.py +14 -21
- supervisely/template/live_training/__init__.py +0 -0
- supervisely/template/live_training/header.html.jinja +96 -0
- supervisely/template/live_training/live_training.html.jinja +51 -0
- supervisely/template/live_training/live_training_generator.py +464 -0
- supervisely/template/live_training/sly-style.css +402 -0
- supervisely/template/live_training/template.html.jinja +18 -0
- supervisely/versions.json +28 -26
- supervisely/video/sampling.py +39 -20
- supervisely/video/video.py +40 -11
- supervisely/video_annotation/video_object.py +29 -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.452.dist-info → supervisely-6.73.513.dist-info}/METADATA +56 -39
- {supervisely-6.73.452.dist-info → supervisely-6.73.513.dist-info}/RECORD +189 -142
- {supervisely-6.73.452.dist-info → supervisely-6.73.513.dist-info}/WHEEL +1 -1
- {supervisely-6.73.452.dist-info → supervisely-6.73.513.dist-info}/entry_points.txt +0 -0
- {supervisely-6.73.452.dist-info → supervisely-6.73.513.dist-info/licenses}/LICENSE +0 -0
- {supervisely-6.73.452.dist-info → supervisely-6.73.513.dist-info}/top_level.txt +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
supervisely/README.md,sha256=XM-DiMC6To3I9RjQZ0c61905EFRR_jnCUx2q3uNR-X8,3331
|
|
2
|
-
supervisely/__init__.py,sha256=
|
|
2
|
+
supervisely/__init__.py,sha256=TCEZQ-54EuhoMTrjtnf1sC8wAGFv3MiYfqdqZqSRD4A,16075
|
|
3
3
|
supervisely/_utils.py,sha256=WsfBpnSqtj2zAO-VKgJneoI49RCVpLugvKAnGQE_KQQ,23152
|
|
4
4
|
supervisely/function_wrapper.py,sha256=R5YajTQ0GnRp2vtjwfC9hINkzQc0JiyGsu8TER373xY,1912
|
|
5
5
|
supervisely/sly_logger.py,sha256=z92Vu5hmC0GgTIJO1n6kPDayRW9__8ix8hL6poDZj-Y,6274
|
|
6
6
|
supervisely/tiny_timer.py,sha256=hkpe_7FE6bsKL79blSs7WBaktuPavEVu67IpEPrfmjE,183
|
|
7
|
-
supervisely/versions.json,sha256=
|
|
7
|
+
supervisely/versions.json,sha256=qc043B8SZHNkJdkojSVg181k63x6erq50KZTQ_Y7bj4,684
|
|
8
8
|
supervisely/annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
supervisely/annotation/annotation.py,sha256=
|
|
9
|
+
supervisely/annotation/annotation.py,sha256=T8TEqikWXZ2dREuPDAjAI1vk05G70Fb3K5uJHZGBTiQ,115258
|
|
10
10
|
supervisely/annotation/annotation_transforms.py,sha256=TlVy_gUbM-XH6GbLpZPrAi6pMIGTr7Ow02iSKOSTa-I,9582
|
|
11
|
-
supervisely/annotation/json_geometries_map.py,sha256=
|
|
11
|
+
supervisely/annotation/json_geometries_map.py,sha256=ievhlNFYdmcgGTdozTvXjNOQFgZ80gM3tLJ25uWTii0,1808
|
|
12
12
|
supervisely/annotation/label.py,sha256=sOK6lGDa-uSNCb7o4F9BJwnPia-Qp36OmFOU8oHyHPA,40601
|
|
13
13
|
supervisely/annotation/obj_class.py,sha256=W7-958-E9TfsL7eKAI3bbOvfAVxd3Unq-7F3lc2Gxjg,16672
|
|
14
14
|
supervisely/annotation/obj_class_collection.py,sha256=lsBJ8mElvwMHky2vsj4GfZ9_Uq186eS-o4ldoNeUJnw,12416
|
|
@@ -22,39 +22,40 @@ supervisely/annotation/tag_meta_mapper.py,sha256=RWeTrxJ64syodyhXIRSH007bX6Hr3B4
|
|
|
22
22
|
supervisely/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
supervisely/api/advanced_api.py,sha256=Nd5cCnHFWc3PSUrCtENxTGtDjS37_lCHXsgXvUI3Ti8,2054
|
|
24
24
|
supervisely/api/agent_api.py,sha256=8EQBwD6v7KLS0-xKcZ12B7mtzKwG7RRgq1fk1vaN144,8893
|
|
25
|
-
supervisely/api/annotation_api.py,sha256=
|
|
26
|
-
supervisely/api/api.py,sha256=
|
|
27
|
-
supervisely/api/app_api.py,sha256=
|
|
25
|
+
supervisely/api/annotation_api.py,sha256=HFJFUuYS8qvEe4JEqMEIrJ8lAo67h9h2LnFSBaF2d50,83153
|
|
26
|
+
supervisely/api/api.py,sha256=52AisKqtm5XPWfOX7eMmefEVdPa45XlaLsrU9ndhGfc,68925
|
|
27
|
+
supervisely/api/app_api.py,sha256=Eit_aRHSJAyP7G1DDehxVzQ8EawMmCQLcQeHSsM5Ck4,79718
|
|
28
28
|
supervisely/api/constants.py,sha256=WfqIcEpRnU4Mcfb6q0njeRs2VVSoTAJaIyrqBkBjP8I,253
|
|
29
|
-
supervisely/api/dataset_api.py,sha256=
|
|
30
|
-
supervisely/api/entities_collection_api.py,sha256=
|
|
29
|
+
supervisely/api/dataset_api.py,sha256=VxJH59G_EApGeFCw-Eu4RB2qowb5wMIj0eHusvxeGKM,51946
|
|
30
|
+
supervisely/api/entities_collection_api.py,sha256=Q1ZnYmu8A-if5E_bMmvXjHZgEZOit32p8t4BxoO2l8k,23017
|
|
31
31
|
supervisely/api/file_api.py,sha256=gNXNsikocSYRojoZrVmXIqXycqXm0e320piAwaLN6JI,92978
|
|
32
32
|
supervisely/api/github_api.py,sha256=NIexNjEer9H5rf5sw2LEZd7C1WR-tK4t6IZzsgeAAwQ,623
|
|
33
|
+
supervisely/api/guides_api.py,sha256=b6owzDXRiA-U2Ru2jTQiSEDVYIhTLco7uICabQfwwY4,6391
|
|
33
34
|
supervisely/api/image_annotation_tool_api.py,sha256=YcUo78jRDBJYvIjrd-Y6FJAasLta54nnxhyaGyanovA,5237
|
|
34
|
-
supervisely/api/image_api.py,sha256=
|
|
35
|
+
supervisely/api/image_api.py,sha256=a5V3RgvPL6pz2O1nj8UMoW9TwVR_TepvAWogzwP9szk,235644
|
|
35
36
|
supervisely/api/import_storage_api.py,sha256=BDCgmR0Hv6OoiRHLCVPKt3iDxSVlQp1WrnKhAK_Zl84,460
|
|
36
37
|
supervisely/api/issues_api.py,sha256=BqDJXmNoTzwc3xe6_-mA7FDFC5QQ-ahGbXk_HmpkSeQ,17925
|
|
37
|
-
supervisely/api/labeling_job_api.py,sha256=
|
|
38
|
-
supervisely/api/labeling_queue_api.py,sha256=
|
|
39
|
-
supervisely/api/module_api.py,sha256=
|
|
38
|
+
supervisely/api/labeling_job_api.py,sha256=HKELzVwQqtEBfCVlXc59cBBJOGVU4u4rD7ufzzebqic,58683
|
|
39
|
+
supervisely/api/labeling_queue_api.py,sha256=j0R17RlDCVpIcD-FJTcYr4u9xD_SUer1zyWeiQ56giA,31228
|
|
40
|
+
supervisely/api/module_api.py,sha256=meWBvBPLQQYZGh1rJB-gmz1hN1F0-GtDhqztw_nV3UI,46680
|
|
40
41
|
supervisely/api/object_class_api.py,sha256=7-npNFMYjWNtSXYZg6syc6bX56_oCzDU2kFRPGQWCwA,10399
|
|
41
42
|
supervisely/api/plugin_api.py,sha256=SFm0IlTTOjuHBLUMgG4d4k6U3cWJocE-SVb-f08fwMQ,5286
|
|
42
|
-
supervisely/api/project_api.py,sha256=
|
|
43
|
+
supervisely/api/project_api.py,sha256=1hN0ccs-pq-hDfn8vYaAdI1aG4gRvYL86KUotXiCjGI,106877
|
|
43
44
|
supervisely/api/project_class_api.py,sha256=5cyjdGPPb2tpttu5WmYoOxUNiDxqiojschkhZumF0KM,1426
|
|
44
45
|
supervisely/api/remote_storage_api.py,sha256=1O4rTIwW8s9gxC00yvFuKbEMGNsa7YSRlZ8j494ARwY,17793
|
|
45
46
|
supervisely/api/report_api.py,sha256=Om7CGulUbQ4BuJ16eDtz7luLe0JQNqab-LoLpUXu7YE,7123
|
|
46
47
|
supervisely/api/role_api.py,sha256=c1XAU_wZg6zL4wG2R7iuS9EJOoaHHNGchxa1nYVL7yo,3047
|
|
47
|
-
supervisely/api/storage_api.py,sha256=
|
|
48
|
-
supervisely/api/task_api.py,sha256=
|
|
49
|
-
supervisely/api/team_api.py,sha256=
|
|
48
|
+
supervisely/api/storage_api.py,sha256=ruLv5M4PDicva0LjXESF_MBs30i6nI83uyTJHKwDLd0,13171
|
|
49
|
+
supervisely/api/task_api.py,sha256=88Zys2Vdgw-KFq5DWlGdx8zoRERDFrYrYTQgOUZ7IG4,39851
|
|
50
|
+
supervisely/api/team_api.py,sha256=xzperdRI4aX9ooyZGNc-MIdJGdL6n1a47ElS3iq8hbE,19565
|
|
50
51
|
supervisely/api/user_api.py,sha256=m29GP9tvem8P2fJZgg7DAZ9yhFdBX26ZBcWxCKdnhn4,24943
|
|
51
52
|
supervisely/api/video_annotation_tool_api.py,sha256=3A9-U8WJzrTShP_n9T8U01M9FzGYdeS51CCBTzUnooo,6686
|
|
52
53
|
supervisely/api/workspace_api.py,sha256=24O9uR5eIA2JdD0eQLi9LGaaHISdb2gUqnxJtx7bTew,9222
|
|
53
54
|
supervisely/api/entity_annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
55
|
supervisely/api/entity_annotation/entity_annotation_api.py,sha256=R7irdsYmUecsibuUFbcPRiS6tV3GnCHi9NfWeuoN7_0,3085
|
|
55
|
-
supervisely/api/entity_annotation/figure_api.py,sha256=
|
|
56
|
-
supervisely/api/entity_annotation/object_api.py,sha256=
|
|
57
|
-
supervisely/api/entity_annotation/tag_api.py,sha256=
|
|
56
|
+
supervisely/api/entity_annotation/figure_api.py,sha256=BH_r9ruykWXkZMZpSnISFDKvjKoez1S9lKWXrvIhO34,39909
|
|
57
|
+
supervisely/api/entity_annotation/object_api.py,sha256=s9zGirVHq-q9fyG7GEs1379Y5PaCrTJ1vD6kPb1jioQ,8923
|
|
58
|
+
supervisely/api/entity_annotation/tag_api.py,sha256=QsoBSj6iUQ8pZaXIWt0Hu1B0MbSd2uysLhe5PYS0qfs,21426
|
|
58
59
|
supervisely/api/nn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
60
|
supervisely/api/nn/deploy_api.py,sha256=fLmTwBNkazMhp1Ydhg_Qojr49ywWDXEKqQVXcBM0-g4,37462
|
|
60
61
|
supervisely/api/nn/ecosystem_models_api.py,sha256=giV54hrFwSxOr58f7OLfzSs3yo30BBjMtRR8NnHbb4s,6952
|
|
@@ -70,8 +71,8 @@ supervisely/api/pointcloud/pointcloud_figure_api.py,sha256=r1sk3g9IgYVHuNhxyZT1T
|
|
|
70
71
|
supervisely/api/pointcloud/pointcloud_object_api.py,sha256=bO1USWb9HAywG_CW4CDu1HLu6l58OqQFuD3ikS9F3bM,5130
|
|
71
72
|
supervisely/api/pointcloud/pointcloud_tag_api.py,sha256=iShtr052nOElxsyMyZEUT2vypEm6kP00gnP13ABX24A,4691
|
|
72
73
|
supervisely/api/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
supervisely/api/video/video_annotation_api.py,sha256=
|
|
74
|
-
supervisely/api/video/video_api.py,sha256=
|
|
74
|
+
supervisely/api/video/video_annotation_api.py,sha256=nk1jlTQ1bL9ha-RGAF_A0nXwoji0D0BibANigWcDpwQ,19069
|
|
75
|
+
supervisely/api/video/video_api.py,sha256=SuJLlVhNdBUrvt35XoyQkBKpqaifbdmaNmCdy6mFuy4,97756
|
|
75
76
|
supervisely/api/video/video_figure_api.py,sha256=T7mka1EG16NBlWezwQB0AeoEQrDDjf_MDPfe_eO9BVE,7107
|
|
76
77
|
supervisely/api/video/video_frame_api.py,sha256=4GwSI4xdCNYEUvTqzKc-Ewd44fw5zqkFoD24jrrN_aY,10214
|
|
77
78
|
supervisely/api/video/video_object_api.py,sha256=IC0NP8EoIT_d3xxDRgz2cA3ixSiuJ5ymy64eS-RfmDM,2227
|
|
@@ -82,32 +83,33 @@ supervisely/api/volume/volume_api.py,sha256=7mMfKY4HdzrbBvGZFE1SJiRi4OsgDyk3azz4
|
|
|
82
83
|
supervisely/api/volume/volume_figure_api.py,sha256=Fs7j3h76kw7EI-o3vJHjpvL4Vxn3Fu-DzhArgK_qrPk,26523
|
|
83
84
|
supervisely/api/volume/volume_object_api.py,sha256=F7pLV2MTlBlyN6fEKdxBSUatIMGWSuu8bWj3Hvcageo,2139
|
|
84
85
|
supervisely/api/volume/volume_tag_api.py,sha256=yNGgXz44QBSW2VGlNDOVLqLXnH8Q2fFrxDFb_girYXA,3639
|
|
85
|
-
supervisely/app/__init__.py,sha256=
|
|
86
|
-
supervisely/app/content.py,sha256=
|
|
86
|
+
supervisely/app/__init__.py,sha256=Z3RrMZBsaDuvSOqinD5K2rgQsQ-PuydQ1LaXbB4bXc8,651
|
|
87
|
+
supervisely/app/content.py,sha256=zbrVnflcv-ZeePIYxLKDQEinFffWuqT4cgTWGBLK8kc,8828
|
|
87
88
|
supervisely/app/exceptions.py,sha256=w01IUAq7SUu4FJDahTdR9tCoDnbobFQ6huL0uHCWxZs,1370
|
|
88
89
|
supervisely/app/export_template.py,sha256=_fI8B2Up0luRbRC6NxaJt-c5Z9MeJYh-RzFv0GARKSw,2801
|
|
89
90
|
supervisely/app/import_template.py,sha256=H2jaVekt9GZvz6FdzfrT8sJTS3VJY8JeXTCJiRv8jWI,50040
|
|
90
91
|
supervisely/app/jinja2.py,sha256=H3TCoLDCdTfO7Fq3ZDtcBNqfyZBlNr7p8qcKrE88HE8,341
|
|
91
|
-
supervisely/app/singleton.py,sha256
|
|
92
|
+
supervisely/app/singleton.py,sha256=-ylcXdKL-qsqgnuPl4vjr62vqxKrjLq_xeFHMqWYI64,1334
|
|
92
93
|
supervisely/app/widgets_context.py,sha256=JkAd4o87eqhkGJbai-Yq6YHULiPsbp1VwGOSBRxTOgY,313
|
|
93
94
|
supervisely/app/development/__init__.py,sha256=f2SpWBcCFPbSEBsJijH25eCAK8NcY2An5NU9vPgCBVo,135
|
|
94
|
-
supervisely/app/development/development.py,sha256=
|
|
95
|
+
supervisely/app/development/development.py,sha256=yJr8wCs-vj9-hOxtRuOmg0IsxTwSix4l8BPOtb-AvkI,13328
|
|
95
96
|
supervisely/app/development/sly-net.sh,sha256=M-RWQ7kygrJm88WGsOW0tEccO0fDgj_xGLI8Ifm-Ie4,1111
|
|
96
|
-
supervisely/app/fastapi/__init__.py,sha256=
|
|
97
|
-
supervisely/app/fastapi/custom_static_files.py,sha256=
|
|
97
|
+
supervisely/app/fastapi/__init__.py,sha256=ZT7hgv34YNg0CBWHcdvksqXHCcN23f1YdXp-JZd87Ek,482
|
|
98
|
+
supervisely/app/fastapi/custom_static_files.py,sha256=VwIozb4CFgJLkkC-hTHOHvYwPpWNSkjddPTaL-fagXw,3477
|
|
98
99
|
supervisely/app/fastapi/dialog_window.html,sha256=ffaAxjK0TQRa7RrY5oA4uE6RzFuS0VnRG1pfoIzTqVM,1183
|
|
99
100
|
supervisely/app/fastapi/index.html,sha256=dz_e-0RE5ZbOU0ToUaEHe1ROI6Tc3SPL-mHt1CpZTxQ,8793
|
|
101
|
+
supervisely/app/fastapi/multi_user.py,sha256=smnKzPdywUL2TCTOk-ZZkl0W250VFVPhOzBNWDA2QPI,4088
|
|
100
102
|
supervisely/app/fastapi/no_html_main.html,sha256=NhQP7noyORBx72lFh1CQKgBRupkWjiq6Gaw-9Hkvg7c,37
|
|
101
103
|
supervisely/app/fastapi/offline.py,sha256=CwMMkJ1frD6wiZS-SEoNDtQ1UJcJe1Ob6ohE3r4CQL8,7414
|
|
102
104
|
supervisely/app/fastapi/request.py,sha256=NU7rKmxJ1pfkDZ7_yHckRcRAueJRQIqCor11UO2OHr8,766
|
|
103
|
-
supervisely/app/fastapi/subapp.py,sha256=
|
|
105
|
+
supervisely/app/fastapi/subapp.py,sha256=N5ly1SmAslUlzA2b8NRscaTTYkoubak3xmYkp5er8t4,51854
|
|
104
106
|
supervisely/app/fastapi/templating.py,sha256=etFkNJKvoWsHrHpmgDUuybZXcLuzS1IBRxvPnZlT9K8,2928
|
|
105
107
|
supervisely/app/fastapi/utils.py,sha256=t_UquzlFrdkKtAJmH6eJ279pE8Aa3BaIu4XjX-SEaIE,946
|
|
106
|
-
supervisely/app/fastapi/websocket.py,sha256=
|
|
108
|
+
supervisely/app/fastapi/websocket.py,sha256=2RqHoN7a_qPz8WMDSxCih69yyi11AaMiVtBhsyg4gxg,3953
|
|
107
109
|
supervisely/app/v1/__init__.py,sha256=OdU0PYv6hLwahYoyaLFO8m3cbJSchvPbqxuG1N3T734,848
|
|
108
110
|
supervisely/app/v1/app_config.md,sha256=-8GKbiQoX25RhEj3EDJ7TxiYuFw5wL2TO3qV5AJLZTs,2536
|
|
109
|
-
supervisely/app/v1/app_service.py,sha256=
|
|
110
|
-
supervisely/app/v1/constants.py,sha256=
|
|
111
|
+
supervisely/app/v1/app_service.py,sha256=oByVsFTtK-YW9YSZviUT5qN2x1qWVhaE5WfElVFXOuI,23675
|
|
112
|
+
supervisely/app/v1/constants.py,sha256=Q-QP6-ajHMRk1cfb_XFwWV2ouQYhkaYr78aAlbZ81po,433
|
|
111
113
|
supervisely/app/v1/sly-icon-example.html,sha256=Cd7C7AGwpgUPcVQQ0oMelco3lGzuSyFG2WivE3zoK4Y,2867
|
|
112
114
|
supervisely/app/v1/widgets/__init__.py,sha256=3kIVxntQYhEhhqewdQs2JSwiFloUiKqXSs5X7BkNUv8,290
|
|
113
115
|
supervisely/app/v1/widgets/chart.py,sha256=yJkHmuQLLslEXu0SLzVE09EmK6P-wpZVgoGYEFzSLRg,2469
|
|
@@ -117,9 +119,13 @@ supervisely/app/v1/widgets/grid_gallery.py,sha256=hEMC0MNfZ4xG2N118Mou_hptLhrikg
|
|
|
117
119
|
supervisely/app/v1/widgets/predictions_dynamics_gallery.py,sha256=l6Ee8-c14yeSnlu4qFsLbmZ5Su63zacO3wmdtH86TMM,8079
|
|
118
120
|
supervisely/app/v1/widgets/progress_bar.py,sha256=8gvQbAUHXPU8_JgC0JZkEBSRCccvg2l4Gtg8DeBCgC8,3184
|
|
119
121
|
supervisely/app/v1/widgets/single_image_gallery.py,sha256=fyuC4jfCHC5rNL1JrHJCE8NaneH0nv0k-0iVkOnY0Wc,2958
|
|
120
|
-
supervisely/app/widgets/__init__.py,sha256=
|
|
122
|
+
supervisely/app/widgets/__init__.py,sha256=oD_GSmkGn8nlPXrpXGCNJ6F3l92kE_52o8FAgESNqrs,11133
|
|
121
123
|
supervisely/app/widgets/select_sly_utils.py,sha256=gBenYkJyCl3Fa4u2GI6BKXul-AqnzvGK32Y6hxXKccA,288
|
|
122
124
|
supervisely/app/widgets/widget.py,sha256=e9tyZj7XhqDWiN5Wwk2xScXOmf__vRCoHflpGtv1RS0,9820
|
|
125
|
+
supervisely/app/widgets/activity_feed/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
|
+
supervisely/app/widgets/activity_feed/activity_feed.py,sha256=AuCgkLykQ7jMgyY2vLcVzvy5kdYwMhnoKhgvaBqQaAk,8101
|
|
127
|
+
supervisely/app/widgets/activity_feed/style.css,sha256=bxjUFhoedbfsGuY1hZln5bCRlwifH3qqkLbsMN6NGVE,1296
|
|
128
|
+
supervisely/app/widgets/activity_feed/template.html,sha256=fZns-IuSwqZODqcihr5sfsLAkQU_L8GU_IjifDXDf7o,1023
|
|
123
129
|
supervisely/app/widgets/agent_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
130
|
supervisely/app/widgets/agent_selector/agent_selector.py,sha256=Tjn3TKP0xLbEZLkeKhZ63T-2sXlpbLoaHMUjomH4YXY,2038
|
|
125
131
|
supervisely/app/widgets/agent_selector/template.html,sha256=t-gV6IHwQSAaGdwve0S9lIJjG66s2vkPv-isHxq7UQ8,997
|
|
@@ -143,7 +149,7 @@ supervisely/app/widgets/button/button.py,sha256=iLIfSn-56CO7-ZCLvgkXl-3PBT97c1tX
|
|
|
143
149
|
supervisely/app/widgets/button/style.css,sha256=ya4kKrQGwVhVtBydftudgjPpDdN3rcUvKSlrY-2h1Kw,93
|
|
144
150
|
supervisely/app/widgets/button/template.html,sha256=toRxOgPmlEyemgYtIFwOyNDA33vW65FjyyAmmrfsKsI,928
|
|
145
151
|
supervisely/app/widgets/card/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
|
-
supervisely/app/widgets/card/card.py,sha256=
|
|
152
|
+
supervisely/app/widgets/card/card.py,sha256=KeTADU22JBg99uHmV5ZLIxrw8WpKXlpGADWUjpNZ_-4,6815
|
|
147
153
|
supervisely/app/widgets/card/style.css,sha256=SSLN3HTYGBt_7MzUsXrtfGo0ylGMaOdDITDfjn-v8sk,51
|
|
148
154
|
supervisely/app/widgets/card/template.html,sha256=SfwwJUTiHoeNMNiw0OSLqEiRD26zhifSJA44AXDt1aw,598
|
|
149
155
|
supervisely/app/widgets/carousel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -173,18 +179,18 @@ supervisely/app/widgets/classes_list_preview/classes_list_preview.py,sha256=9Kmr
|
|
|
173
179
|
supervisely/app/widgets/classes_list_preview/style.css,sha256=ux1FCReTvcopl64MoEPFhnOdXyUTVP3WNWelyDZVhRA,122
|
|
174
180
|
supervisely/app/widgets/classes_list_preview/template.html,sha256=3s05ZZWNDHPjFX_zatmABFDfRO2bqZ5BRO2JeY93EBY,1261
|
|
175
181
|
supervisely/app/widgets/classes_list_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
-
supervisely/app/widgets/classes_list_selector/classes_list_selector.py,sha256=
|
|
182
|
+
supervisely/app/widgets/classes_list_selector/classes_list_selector.py,sha256=MZTKbA9JK75g3nHok2WXrcju7-umm_KtDp1d_VQcbVs,8932
|
|
177
183
|
supervisely/app/widgets/classes_list_selector/style.css,sha256=fsVL1o8uZfCbQWk9zpp31dINXA5Ua5E5Eo5QdoYaubU,220
|
|
178
|
-
supervisely/app/widgets/classes_list_selector/template.html,sha256=
|
|
184
|
+
supervisely/app/widgets/classes_list_selector/template.html,sha256=bEz87bIB9ZZxleada9bv4PVya3zof7PR3lrgG5AxE7Y,4346
|
|
179
185
|
supervisely/app/widgets/classes_mapping/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
|
-
supervisely/app/widgets/classes_mapping/classes_mapping.py,sha256=
|
|
186
|
+
supervisely/app/widgets/classes_mapping/classes_mapping.py,sha256=TVOsH-3lzepKUMe_dLRF0mXnbW5vEAInkGhod7Gb-Uo,6820
|
|
181
187
|
supervisely/app/widgets/classes_mapping/template.html,sha256=uzm8AI4T1OoAa7t5ojUJHLpgYqipCNjCSaBS6E293mo,1848
|
|
182
188
|
supervisely/app/widgets/classes_mapping_preview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
189
|
supervisely/app/widgets/classes_mapping_preview/classes_mapping_preview.py,sha256=ng1XzquFZxHYJN2AyM_qqxn2pym3sWWNsx72DqU6QDU,1883
|
|
184
190
|
supervisely/app/widgets/classes_mapping_preview/style.css,sha256=i5UkUvCDBwIu_vLCEePNLpUk6_UYpHdNPu6mK5DSWpQ,128
|
|
185
191
|
supervisely/app/widgets/classes_mapping_preview/template.html,sha256=a0blGgpVI32PLwwyVkzu1DhZPyDQtxCVm0193MBZoOg,1028
|
|
186
192
|
supervisely/app/widgets/classes_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
|
-
supervisely/app/widgets/classes_table/classes_table.py,sha256=
|
|
193
|
+
supervisely/app/widgets/classes_table/classes_table.py,sha256=yXH_HdWCtprLXbwOvWcmitkPf3Z1yQsyspCbdQ6RlWE,20749
|
|
188
194
|
supervisely/app/widgets/classes_table/style.css,sha256=-BOLDIEiMXRRrz2GVKUG58Zj3wfpaBSEr43yZlSZr2w,493
|
|
189
195
|
supervisely/app/widgets/classes_table/template.html,sha256=VvaQTEA_YKRbKguxw4N2ik0SR-6zfO_RQ0ICR5wasK8,2362
|
|
190
196
|
supervisely/app/widgets/classic_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -225,7 +231,7 @@ supervisely/app/widgets/datetime_picker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
|
225
231
|
supervisely/app/widgets/datetime_picker/datetime_picker.py,sha256=fTRB69qjT-GgMISQs49Nt2WVc791QgQvXpGqXsAt5A4,7769
|
|
226
232
|
supervisely/app/widgets/datetime_picker/template.html,sha256=oDeokfu2yAPJLItgEyiQf8yfvO1q_lsaaukQv9Yg3tY,600
|
|
227
233
|
supervisely/app/widgets/deploy_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
|
-
supervisely/app/widgets/deploy_model/deploy_model.py,sha256=
|
|
234
|
+
supervisely/app/widgets/deploy_model/deploy_model.py,sha256=4F1FhztYOsWGybRWqsMPSc_hops8YJb01z1wRWosw8o,28768
|
|
229
235
|
supervisely/app/widgets/destination_project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
236
|
supervisely/app/widgets/destination_project/destination_project.py,sha256=zSFrCfvFMbeZY4uC3FRz-EkEpuqU24Mq-KqAckOc184,5476
|
|
231
237
|
supervisely/app/widgets/destination_project/template.html,sha256=AhhHte0PDFwbYRs06Q824gz3uy68ouVur_KM4FaCWtE,5526
|
|
@@ -246,7 +252,7 @@ supervisely/app/widgets/dropdown_checkbox_selector/__init__.py,sha256=47DEQpj8HB
|
|
|
246
252
|
supervisely/app/widgets/dropdown_checkbox_selector/dropdown_checkbox_selector.py,sha256=Xu-7ktelagX7ACdqd-VfUaGPjHsAErl7HRs4Xexvo9Q,2554
|
|
247
253
|
supervisely/app/widgets/dropdown_checkbox_selector/template.html,sha256=nPHWIGHQroR7_DQdzYY6ErxzLsW1Lpmt7aayJmVaGXg,521
|
|
248
254
|
supervisely/app/widgets/ecosystem_model_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
-
supervisely/app/widgets/ecosystem_model_selector/ecosystem_model_selector.py,sha256=
|
|
255
|
+
supervisely/app/widgets/ecosystem_model_selector/ecosystem_model_selector.py,sha256=mACC0HfIoE_oHuYyx94wL4vYK9IY7C9fBronaCSq4S8,7373
|
|
250
256
|
supervisely/app/widgets/editor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
257
|
supervisely/app/widgets/editor/editor.py,sha256=jhuB4xPmq9f3z4cB_5DrXDjgPdzXkf3xWN8wJwstj8o,7662
|
|
252
258
|
supervisely/app/widgets/editor/template.html,sha256=8byDuuqtsaxAHImqFI0Jv7-6O63Gxu0IfccLL9zFdVA,282
|
|
@@ -264,12 +270,12 @@ supervisely/app/widgets/empty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
264
270
|
supervisely/app/widgets/empty/empty.py,sha256=fCr8I7CQ2XLo59bl2txjDrblOGiu0TzUcM-Pq6s7gKY,1285
|
|
265
271
|
supervisely/app/widgets/empty/template.html,sha256=aDBKkin5aLuqByzNN517-rTYCGIg5SPKgnysYMPYjv8,40
|
|
266
272
|
supervisely/app/widgets/experiment_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
-
supervisely/app/widgets/experiment_selector/experiment_selector.py,sha256=
|
|
273
|
+
supervisely/app/widgets/experiment_selector/experiment_selector.py,sha256=n-5nolmzGUK2EQ_WIz62QcdJiwvGZPOLKv_liv1vejM,28566
|
|
268
274
|
supervisely/app/widgets/fast_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
|
-
supervisely/app/widgets/fast_table/fast_table.py,sha256=
|
|
275
|
+
supervisely/app/widgets/fast_table/fast_table.py,sha256=K7arpDwlG7WauAtxITxqezgJDWGsSQzjSdy4d0jr3Qo,62140
|
|
270
276
|
supervisely/app/widgets/fast_table/script.js,sha256=V0l3hlRjejsVM6lSYDF6b79NZgegSdLKH0RBrhumnPU,22728
|
|
271
277
|
supervisely/app/widgets/fast_table/style.css,sha256=DwVGIX4Hap_rG7D570pfyFRAUSMtfHUZEQYs9C6JrAY,16685
|
|
272
|
-
supervisely/app/widgets/fast_table/template.html,sha256=
|
|
278
|
+
supervisely/app/widgets/fast_table/template.html,sha256=L48n6lxnOTK8g7nvsdKm1-P4iEB-RR3NjBooYJpDtPM,2808
|
|
273
279
|
supervisely/app/widgets/field/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
280
|
supervisely/app/widgets/field/field.py,sha256=FqBqfIEcUK7R3va30YS_zijWTUSD5QT3-kpLKJNPq7o,6258
|
|
275
281
|
supervisely/app/widgets/field/style.css,sha256=sLMbqxS4EDPykcQZNMXeYdR4v1y1OP6iqcX0tRz7C68,56
|
|
@@ -305,6 +311,11 @@ supervisely/app/widgets/grid_gallery_v2/template.html,sha256=eokcONj7KxH8zi1EzML
|
|
|
305
311
|
supervisely/app/widgets/grid_plot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
312
|
supervisely/app/widgets/grid_plot/grid_plot.py,sha256=o3X3Crw2w8BFd8A2TxdzVl3EFYwFx9NVB1sDByAhJHM,4846
|
|
307
313
|
supervisely/app/widgets/grid_plot/template.html,sha256=uitOlYgw1WmJWBX7t7WLhgA6ffBu29e0SpuZngLeUq0,21
|
|
314
|
+
supervisely/app/widgets/heatmap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
|
+
supervisely/app/widgets/heatmap/heatmap.py,sha256=Y_c-qB_LiRIH3kURNIsG34lz-wjMNrKlLK6AvJFJTWc,21920
|
|
316
|
+
supervisely/app/widgets/heatmap/script.js,sha256=6_WrbQBTe3uMJytHa5qdYGsCqWMz2kIh52tj2YI11nA,17702
|
|
317
|
+
supervisely/app/widgets/heatmap/style.css,sha256=4Ol4Yifmqm0m_YYUljQvkTvA85j2lW1vCU-COQIaZII,4363
|
|
318
|
+
supervisely/app/widgets/heatmap/template.html,sha256=Fk_ebtZmuD3nE7ZEBj54A9ai5ANHes8VrQC32M3Ef5o,1080
|
|
308
319
|
supervisely/app/widgets/heatmap_chart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
320
|
supervisely/app/widgets/heatmap_chart/heatmap_chart.py,sha256=ivTDffD8DOrqNjn9fjF8BXfOqCEPFuCv-6sBHHxSCTs,4390
|
|
310
321
|
supervisely/app/widgets/icons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -374,6 +385,9 @@ supervisely/app/widgets/members_list_selector/template.html,sha256=Q6MX0FaJ2Qisz
|
|
|
374
385
|
supervisely/app/widgets/menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
386
|
supervisely/app/widgets/menu/menu.py,sha256=RdrMiiTyLbdUfMSwq5YaHvSaDaaWFdetYIM68V4Qq_M,4089
|
|
376
387
|
supervisely/app/widgets/menu/template.html,sha256=IjxOOSyDGYNzUNZZmhySGHNBkinzMmaed8_wzv2BQv8,1671
|
|
388
|
+
supervisely/app/widgets/modal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
|
+
supervisely/app/widgets/modal/modal.py,sha256=Rs9KQ_FWMSTDc4qg9TO6pddHVIj7LO-P3UrIIOR_dTA,6184
|
|
390
|
+
supervisely/app/widgets/modal/template.html,sha256=5KNLUgyDRM9w0woKnzOhbMLQCs1DxCXhGwCvu0XGJU0,473
|
|
377
391
|
supervisely/app/widgets/model_info/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
378
392
|
supervisely/app/widgets/model_info/model_info.py,sha256=UwGltLaISNCsaCPjR4StDQv67xw9szEv0PToAYzrLWs,2639
|
|
379
393
|
supervisely/app/widgets/model_info/template.html,sha256=QjMmoc66rChAqgls9GyFyirqGQXV-uhj8gHIcixs5Hg,355
|
|
@@ -386,7 +400,7 @@ supervisely/app/widgets/notification_box/notification_box.py,sha256=4HCi-_kH2lAX
|
|
|
386
400
|
supervisely/app/widgets/notification_box/style.css,sha256=JbK7c6eMKd_rb3i4gL08qnA5Ft5la97QQTV1jpS9wC4,1077
|
|
387
401
|
supervisely/app/widgets/notification_box/template.html,sha256=Ejwl4yyNxcfylsZHOS1KSpmGmiS5tAxrFzPEwZHOsj4,617
|
|
388
402
|
supervisely/app/widgets/object_class_view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
|
-
supervisely/app/widgets/object_class_view/object_class_view.py,sha256=
|
|
403
|
+
supervisely/app/widgets/object_class_view/object_class_view.py,sha256=lO8rkn70IobOr0xfVQW3-WBehOJn1r3SkZqjRq0mEkI,17413
|
|
390
404
|
supervisely/app/widgets/object_class_view/style.css,sha256=-dhwN5KZSOh4kw9OZgFJoEXCfiRZlp4TpV2QXHesg-c,134
|
|
391
405
|
supervisely/app/widgets/object_class_view/template.html,sha256=muRjZQD-XOvjdhQt5eKIVuuQGB9M6lIIBXV70PGHPqM,1542
|
|
392
406
|
supervisely/app/widgets/object_classes_list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -420,9 +434,9 @@ supervisely/app/widgets/radio_table/radio_table.py,sha256=e5J9puiWs73Y1h7Q6IGGfx
|
|
|
420
434
|
supervisely/app/widgets/radio_table/style.css,sha256=Q90u4YLVCKtxxrATkO9JjdcjCnkmeYVmza9h8g-4QiA,255
|
|
421
435
|
supervisely/app/widgets/radio_table/template.html,sha256=wJ0V8BZFGCO2-9XynuOPsEbWqVwhUBTy4QKIyqNUzY0,1496
|
|
422
436
|
supervisely/app/widgets/radio_tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
423
|
-
supervisely/app/widgets/radio_tabs/radio_tabs.py,sha256=
|
|
437
|
+
supervisely/app/widgets/radio_tabs/radio_tabs.py,sha256=EuuFcTXkuICNukexLx1oHr6UI4BJRKWqy2Fawye8_8o,3308
|
|
424
438
|
supervisely/app/widgets/radio_tabs/style.css,sha256=tqyv-Du8ZBYO6kr9lsAiEJPMxjKwM6526yBC4dXwv9s,759
|
|
425
|
-
supervisely/app/widgets/radio_tabs/template.html,sha256=
|
|
439
|
+
supervisely/app/widgets/radio_tabs/template.html,sha256=eqEQ9q5eFa6ROO23xM0luN4MQy7KoapC6v-qmRo9LRo,1061
|
|
426
440
|
supervisely/app/widgets/random_splits_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
427
441
|
supervisely/app/widgets/random_splits_table/random_splits_table.py,sha256=lU_55tAjfCvTr1B4rkza4bqMw8i0-cOPeS-W8rnX2S8,3479
|
|
428
442
|
supervisely/app/widgets/random_splits_table/template.html,sha256=whTSGXDjWMtMGJyh9dZKqsROwKI6UAicUuUxzuHobSQ,2075
|
|
@@ -445,22 +459,25 @@ supervisely/app/widgets/sampling/sampling.py,sha256=UWDb1uZ71W0h9pa7rXVyj1999zaA
|
|
|
445
459
|
supervisely/app/widgets/scatter_chart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
446
460
|
supervisely/app/widgets/scatter_chart/scatter_chart.py,sha256=nX7fZbWsDiMjOek5FvIHgKbnBwQ-ol_V3XvnoAnz59c,4832
|
|
447
461
|
supervisely/app/widgets/select/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
448
|
-
supervisely/app/widgets/select/select.py,sha256=
|
|
462
|
+
supervisely/app/widgets/select/select.py,sha256=eMBepc62qR-KeoX98JTkgYIqxXCmMwM-aYF5sAfNgaM,11489
|
|
449
463
|
supervisely/app/widgets/select/template.html,sha256=s5ZpmWkYf3JOVyBEgWPAIMbQzTK6txL9E-k5-HNFj3s,2041
|
|
450
464
|
supervisely/app/widgets/select_app_session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
451
465
|
supervisely/app/widgets/select_app_session/select_app_session.py,sha256=yRuYiYakd7kqG3cX3MeKYWxxhMWGFeiyJUBW7KoDmpQ,2159
|
|
452
466
|
supervisely/app/widgets/select_app_session/template.html,sha256=PGr5YL7Ts3ALO9ZQkuYNnRhP7eyYq54sf7Y9EhDbuvE,959
|
|
467
|
+
supervisely/app/widgets/select_class/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
468
|
+
supervisely/app/widgets/select_class/select_class.py,sha256=DbAfK28XCX5dSnABmmnkLkeKSks-N5Fq7JdOBhZQyVQ,13481
|
|
469
|
+
supervisely/app/widgets/select_class/template.html,sha256=mavGaA5clSKd_A8YzeVGJ25yh9QbwgKA9t8kzT427No,2600
|
|
453
470
|
supervisely/app/widgets/select_collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
454
471
|
supervisely/app/widgets/select_collection/select_collection.py,sha256=8ZhOgAUl_uAEoA9zzo-QV9LMmHyjNcJlMfvJLNdvuls,27249
|
|
455
472
|
supervisely/app/widgets/select_collection/template.html,sha256=_uvKCMP0nkpSl3FiTUxqy10JZw3q8-9hXCv22W3BDF0,38
|
|
456
473
|
supervisely/app/widgets/select_cuda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
457
|
-
supervisely/app/widgets/select_cuda/select_cuda.py,sha256=
|
|
474
|
+
supervisely/app/widgets/select_cuda/select_cuda.py,sha256=wzcMDqUaxelwJ8QEvHInXsq_G5-66uP_2RcQTsjXBIk,6657
|
|
458
475
|
supervisely/app/widgets/select_cuda/template.html,sha256=_uvKCMP0nkpSl3FiTUxqy10JZw3q8-9hXCv22W3BDF0,38
|
|
459
476
|
supervisely/app/widgets/select_dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
460
477
|
supervisely/app/widgets/select_dataset/select_dataset.py,sha256=S7zl83lUhquJ1U8GugiViEiGId6a5nVDfyIRRxh_LT4,10295
|
|
461
478
|
supervisely/app/widgets/select_dataset/template.html,sha256=7O_ZgmRs0vOL8tng6QvYbI_0o6A4yMAPB2MlfzWHeHQ,984
|
|
462
479
|
supervisely/app/widgets/select_dataset_tree/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
463
|
-
supervisely/app/widgets/select_dataset_tree/select_dataset_tree.py,sha256=
|
|
480
|
+
supervisely/app/widgets/select_dataset_tree/select_dataset_tree.py,sha256=zFb7a70Zb7iWAtoM7zESCWcobQ2YEROJIJoj0CKpQ3k,25855
|
|
464
481
|
supervisely/app/widgets/select_dataset_tree/template.html,sha256=_uvKCMP0nkpSl3FiTUxqy10JZw3q8-9hXCv22W3BDF0,38
|
|
465
482
|
supervisely/app/widgets/select_item/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
483
|
supervisely/app/widgets/select_item/select_item.py,sha256=dcB0UN46rn3nFQybgrGpLRfwB6xnPo-GGrv9rsMeCbA,3833
|
|
@@ -468,15 +485,21 @@ supervisely/app/widgets/select_item/template.html,sha256=iVsD3JEHft5ZtCf2mfgEcBf
|
|
|
468
485
|
supervisely/app/widgets/select_project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
469
486
|
supervisely/app/widgets/select_project/select_project.py,sha256=cqibv3VKGpWnVTH9xUPgPlK4fTgDmVtaUOWC_MlcxYQ,4346
|
|
470
487
|
supervisely/app/widgets/select_project/template.html,sha256=4219T7y6UuAQ7JLw2kDFFDUSE3tUZhX81v4wrxstPsU,691
|
|
488
|
+
supervisely/app/widgets/select_tag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
|
+
supervisely/app/widgets/select_tag/select_tag.py,sha256=sWaaeSbC3e-m_ERiipwSt8EJDrFz_juRGWew3_mU5Ho,12709
|
|
490
|
+
supervisely/app/widgets/select_tag/template.html,sha256=2QuoccQ_v8ZsyBjUH0O-RQTzWKhfMfFuPciNlXIWDhg,3192
|
|
471
491
|
supervisely/app/widgets/select_tag_meta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
472
492
|
supervisely/app/widgets/select_tag_meta/select_tag_meta.py,sha256=VCWzoDZc-CHAopTrQ_gTYnm_R9galrPKLlUNdQz9nkU,7012
|
|
473
493
|
supervisely/app/widgets/select_tag_meta/template.html,sha256=L3o_K65-CL0vewV7yQ6jDPB6m4E-ZJWstveWCbF3OcA,1464
|
|
474
494
|
supervisely/app/widgets/select_team/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
|
-
supervisely/app/widgets/select_team/select_team.py,sha256=
|
|
476
|
-
supervisely/app/widgets/select_team/template.html,sha256=
|
|
495
|
+
supervisely/app/widgets/select_team/select_team.py,sha256=FZ5k1wmY7EnLu9TEUvEQ8Yifykv-5pFuuSwE5T_RaJc,2523
|
|
496
|
+
supervisely/app/widgets/select_team/template.html,sha256=v40K2A5eBSqH3EdPMh5SBMG7qcUITH0wXqPEGstI5NE,370
|
|
497
|
+
supervisely/app/widgets/select_user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
498
|
+
supervisely/app/widgets/select_user/select_user.py,sha256=v8KYbIPfP4y8Vk04DdC5gsK6SkdRotdJBjH7iQQ5jGk,9387
|
|
499
|
+
supervisely/app/widgets/select_user/template.html,sha256=jEJNh5ucizEALuIciJ7Nccxv7cvuF-8hxWgxuzvayy0,780
|
|
477
500
|
supervisely/app/widgets/select_workspace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
478
|
-
supervisely/app/widgets/select_workspace/select_workspace.py,sha256=
|
|
479
|
-
supervisely/app/widgets/select_workspace/template.html,sha256=
|
|
501
|
+
supervisely/app/widgets/select_workspace/select_workspace.py,sha256=9-Ax5lR9jiWCT5g5HLRotLPuaeqoxcdAXXCdt4H2fsU,5008
|
|
502
|
+
supervisely/app/widgets/select_workspace/template.html,sha256=j194pMOMXNqdI_WmyTEIq20k1LyHn3uQIlo_T8kKJK0,676
|
|
480
503
|
supervisely/app/widgets/sidebar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
504
|
supervisely/app/widgets/sidebar/sidebar.py,sha256=gGGdgwdqJ1eoa7dKj4sj5Fp1Tnhl8X4EqV3kVC6OdLM,1533
|
|
482
505
|
supervisely/app/widgets/sidebar/style.css,sha256=axKi2EvPEjXBl4VLy3YG5xTpr8CsWw6xwbswChheG3A,136
|
|
@@ -496,7 +519,7 @@ supervisely/app/widgets/switch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
496
519
|
supervisely/app/widgets/switch/switch.py,sha256=k0oWbMjN9-ak1UcqBBEC3-yeJlEfiF4iwj1FocPClds,3143
|
|
497
520
|
supervisely/app/widgets/switch/template.html,sha256=Hqo565LsnWlq5fK13KZ04aLNaqr1kbZDQX8JPJnR5e4,462
|
|
498
521
|
supervisely/app/widgets/table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
|
-
supervisely/app/widgets/table/table.py,sha256=
|
|
522
|
+
supervisely/app/widgets/table/table.py,sha256=KG3C5yO27_-_rjVDYnTbwKea-E5i9QkxB6k5szxGNUs,18776
|
|
500
523
|
supervisely/app/widgets/table/template.html,sha256=f895pzZzrc2dMN7ZFZ9iywQjxS2bWvSMIJxdqFbFL8k,778
|
|
501
524
|
supervisely/app/widgets/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
502
525
|
supervisely/app/widgets/tabs/tabs.py,sha256=7G720sRoxxT_67zs1pCLgPN-opGSi4q3g24XYW65mk0,3121
|
|
@@ -551,7 +574,7 @@ supervisely/app/widgets/transfer/template.html,sha256=R9lKq4xsQhyAT0GOdZV7T7Myc3
|
|
|
551
574
|
supervisely/app/widgets/transfer/transfer.py,sha256=y8Rg9AH7sNd342tSJwVmTO9Rwi5F5fTmxEMOa353bJo,19847
|
|
552
575
|
supervisely/app/widgets/tree_select/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
553
576
|
supervisely/app/widgets/tree_select/template.html,sha256=eUHN0yn_llRRozAOvdc8SjhY-KX12TcgOUXCemHWGew,613
|
|
554
|
-
supervisely/app/widgets/tree_select/tree_select.py,sha256=
|
|
577
|
+
supervisely/app/widgets/tree_select/tree_select.py,sha256=K7c8Nf4OSzzk6psO-XPUPaXtK7yFoiOaORNlZJNT_Tc,14552
|
|
555
578
|
supervisely/app/widgets/treemap_chart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
556
579
|
supervisely/app/widgets/treemap_chart/treemap_chart.py,sha256=g6wc1M30kNFA92Xj-6g2bJlnnV23ro17pJn0s4WDgvs,9298
|
|
557
580
|
supervisely/app/widgets/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -565,7 +588,7 @@ supervisely/app/widgets/video_thumbnail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
|
565
588
|
supervisely/app/widgets/video_thumbnail/template.html,sha256=p1oLViHv8GVP59g0lcbX3SWn_rqejUEGDH7jlJlUGLI,437
|
|
566
589
|
supervisely/app/widgets/video_thumbnail/video_thumbnail.py,sha256=pnJrYcFeBolKkffFb_9QEj425oUIAv4KYhD4-Ujmay0,1850
|
|
567
590
|
supervisely/aug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
568
|
-
supervisely/aug/aug.py,sha256=
|
|
591
|
+
supervisely/aug/aug.py,sha256=cON4bDxdT66N0l0Q-lC91d8Q3UMdZ2TxN1Zq1BE_kf4,25732
|
|
569
592
|
supervisely/aug/imgaug_utils.py,sha256=Lnk-qtJFxCcVJa6rY4WtSpj7Am6AzvPAB3zoBUYL5Tk,16186
|
|
570
593
|
supervisely/cli/__init__.py,sha256=x-Cg_By8k-0AIQSKP-9RNPd3PSotH5GrIdgGcxuJsas,1334
|
|
571
594
|
supervisely/cli/cli.py,sha256=H3RlSi60wXcaz5sUR6-VoLcmTTw4u-Y8ZU7yW3rng3Y,7741
|
|
@@ -586,11 +609,11 @@ supervisely/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
586
609
|
supervisely/collection/key_indexed_collection.py,sha256=x2UVlkprspWhhae9oLUzjTWBoIouiWY9UQSS_MozfH0,37643
|
|
587
610
|
supervisely/collection/str_enum.py,sha256=Zp29yFGvnxC6oJRYNNlXhO2lTSdsriU1wiGHj6ahEJE,1250
|
|
588
611
|
supervisely/convert/__init__.py,sha256=ropgB1eebG2bfLoJyf2jp8Vv9UkFujaW3jVX-71ho1g,1353
|
|
589
|
-
supervisely/convert/base_converter.py,sha256=
|
|
590
|
-
supervisely/convert/converter.py,sha256=
|
|
612
|
+
supervisely/convert/base_converter.py,sha256=SrC3FP7TUuqYhX6ziF_L9GVR3DNZ6P-GyjBl9i3tm_c,18627
|
|
613
|
+
supervisely/convert/converter.py,sha256=ZQJ39p-9SCrLYFrshkyJm4Aa2oMK8o0FSodlOrGKT7Q,11450
|
|
591
614
|
supervisely/convert/image/__init__.py,sha256=JEuyaBiiyiYmEUYqdn8Mog5FVXpz0H1zFubKkOOm73I,1395
|
|
592
|
-
supervisely/convert/image/image_converter.py,sha256=
|
|
593
|
-
supervisely/convert/image/image_helper.py,sha256=
|
|
615
|
+
supervisely/convert/image/image_converter.py,sha256=5BGsh2kJBlad-SctRZS4ZUl0oEXJ6zB2g9DZ09F4PWM,10520
|
|
616
|
+
supervisely/convert/image/image_helper.py,sha256=a_jaXSYppnVS1tfmomgZbtzuQ_uRxXwlYno14ZJrTcs,4988
|
|
594
617
|
supervisely/convert/image/cityscapes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
595
618
|
supervisely/convert/image/cityscapes/cityscapes_converter.py,sha256=tnelQJHvGz_IGMXWe-EKWAkBhexRzmkv_0Kln5sN12E,8100
|
|
596
619
|
supervisely/convert/image/cityscapes/cityscapes_helper.py,sha256=in5nR7__q_u5dCkVtZmynfZ_ZuvsIAHrTzyTG4EvNgU,2988
|
|
@@ -608,21 +631,21 @@ supervisely/convert/image/label_me/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
608
631
|
supervisely/convert/image/label_me/label_me_converter.py,sha256=E8epO8METLslVLy51AW7FoZto1jrPSFUZHDwzOnHbTk,3081
|
|
609
632
|
supervisely/convert/image/label_me/label_me_helper.py,sha256=qysfNlGyUG8dAEn9dS66AfxTSC6S5fTSTg7JMtVA2OU,8430
|
|
610
633
|
supervisely/convert/image/label_studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
611
|
-
supervisely/convert/image/label_studio/label_studio_converter.py,sha256=
|
|
634
|
+
supervisely/convert/image/label_studio/label_studio_converter.py,sha256=PQbhmGKrqtnYlkAYAnA8iW4q3rz5GiJSWSi3mvHCIOc,5206
|
|
612
635
|
supervisely/convert/image/label_studio/label_studio_helper.py,sha256=aSAvhZnkqqVtGKxSDrw9slLIe-cNte7G1FeH8Tu3yRY,8008
|
|
613
636
|
supervisely/convert/image/masks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
614
637
|
supervisely/convert/image/masks/image_with_masks_helper.py,sha256=TSHiAIH3qlYdjR-9HteDcbJQbvJLM7NfWqoaW5BNTX4,2233
|
|
615
638
|
supervisely/convert/image/masks/images_with_masks_converter.py,sha256=Won5LihYXZZmimgaJHmK0_rVmOadWYk21OHKri21R08,6866
|
|
616
639
|
supervisely/convert/image/medical2d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
617
640
|
supervisely/convert/image/medical2d/medical2d_converter.py,sha256=cYEaRfr8YFxEG_Pv-_SVMxrqZudi3kWbGQ3aArL2mds,8156
|
|
618
|
-
supervisely/convert/image/medical2d/medical2d_helper.py,sha256=
|
|
641
|
+
supervisely/convert/image/medical2d/medical2d_helper.py,sha256=3puiUK3AZ9oBUCdEVh3a13wR1kZlW_NqFSE67gelqps,12665
|
|
619
642
|
supervisely/convert/image/multi_view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
620
643
|
supervisely/convert/image/multi_view/multi_view.py,sha256=V-6oFN6oDre7UhejfyDkGKAg4rbM3C9JCQ8pHhuUBb8,4436
|
|
621
644
|
supervisely/convert/image/multispectral/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
622
|
-
supervisely/convert/image/multispectral/multispectral_converter.py,sha256=
|
|
645
|
+
supervisely/convert/image/multispectral/multispectral_converter.py,sha256=s7Ws9gd5Ousxc0aTtlwlGTLVpF1vuFDQOd-Via8nKPs,5420
|
|
623
646
|
supervisely/convert/image/pascal_voc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
624
|
-
supervisely/convert/image/pascal_voc/pascal_voc_converter.py,sha256
|
|
625
|
-
supervisely/convert/image/pascal_voc/pascal_voc_helper.py,sha256=
|
|
647
|
+
supervisely/convert/image/pascal_voc/pascal_voc_converter.py,sha256=-BFKdiO_6aaoQt3JMuJqYqI2MvD2GFY_VmOEPcMqtqo,9402
|
|
648
|
+
supervisely/convert/image/pascal_voc/pascal_voc_helper.py,sha256=Z_pZT4uqiDT34eOeYpCt5_bM3Po_3aK7xeTgKve3lsY,30470
|
|
626
649
|
supervisely/convert/image/pdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
627
650
|
supervisely/convert/image/pdf/pdf_converter.py,sha256=LKvVng9jPp0cSIjYEjKLOb48wtdOdB7LXS2gjmOdZhE,2442
|
|
628
651
|
supervisely/convert/image/pdf/pdf_helper.py,sha256=IDwLEvsVy8lu-KC1lXvSRkZZ9BCC6ylebnNEtLQU5L4,1288
|
|
@@ -634,21 +657,21 @@ supervisely/convert/image/yolo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
634
657
|
supervisely/convert/image/yolo/yolo_converter.py,sha256=Wn5dR05y4SEPONcaxWr9ofnbvbf-SbRZN0fkksk5Dps,11391
|
|
635
658
|
supervisely/convert/image/yolo/yolo_helper.py,sha256=5b0ShsVlqikA071VT8AiRW_079_WD6pdB5Bx3OU12Bw,25989
|
|
636
659
|
supervisely/convert/pointcloud/__init__.py,sha256=WPeIpPoTWDIKAa0lF6t2SMUhFNZ0l-vKujf6yD6w7SA,589
|
|
637
|
-
supervisely/convert/pointcloud/pointcloud_converter.py,sha256
|
|
660
|
+
supervisely/convert/pointcloud/pointcloud_converter.py,sha256=H2KPoNHv_JL_JEB97kh1NmuFwjn_nTjg_oCvlVR9wAA,15931
|
|
638
661
|
supervisely/convert/pointcloud/bag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
639
662
|
supervisely/convert/pointcloud/bag/bag_converter.py,sha256=WWd6A2hS7H4MRgtLdJ-yYgmNU-Wk2eycl6LTTJM2GKQ,11391
|
|
640
663
|
supervisely/convert/pointcloud/bag/bag_helper.py,sha256=2TFe49isZTxMhya-PApqLPxrvGnvRFMBc_--BwyCpWU,4284
|
|
641
664
|
supervisely/convert/pointcloud/kitti_3d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
642
|
-
supervisely/convert/pointcloud/kitti_3d/kitti_3d_converter.py,sha256=
|
|
643
|
-
supervisely/convert/pointcloud/kitti_3d/kitti_3d_helper.py,sha256=
|
|
665
|
+
supervisely/convert/pointcloud/kitti_3d/kitti_3d_converter.py,sha256=AoktnST-Vxhgjy8OPKGe8DVB7PHrwLCQfG7Mr50IhHU,6574
|
|
666
|
+
supervisely/convert/pointcloud/kitti_3d/kitti_3d_helper.py,sha256=8-2tfHfL3tNa5cvA1RlCQq06dIkIDGJyJ_2OPA9rxgQ,4156
|
|
644
667
|
supervisely/convert/pointcloud/las/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
645
|
-
supervisely/convert/pointcloud/las/las_converter.py,sha256=
|
|
646
|
-
supervisely/convert/pointcloud/las/las_helper.py,sha256
|
|
668
|
+
supervisely/convert/pointcloud/las/las_converter.py,sha256=pYCrkCAyPQNo5mIDFrQyXp-WVSSw2rO9fqFB59JjNJY,2448
|
|
669
|
+
supervisely/convert/pointcloud/las/las_helper.py,sha256=-7phP1fsrrDYgmR9wVlZyxZXXd06nTduFRCcHJqZPtw,5146
|
|
647
670
|
supervisely/convert/pointcloud/lyft/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
648
671
|
supervisely/convert/pointcloud/lyft/lyft_converter.py,sha256=bM9R3LLt4l5frK1Lhmy_WnhGUYCC7rH94v94sqmLxjY,11010
|
|
649
672
|
supervisely/convert/pointcloud/lyft/lyft_helper.py,sha256=bTe7ryLPfSkW0MjzFP-6AMyDMBtPu8Xk9cx0g0MomoQ,8521
|
|
650
673
|
supervisely/convert/pointcloud/nuscenes_conv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
651
|
-
supervisely/convert/pointcloud/nuscenes_conv/nuscenes_converter.py,sha256=
|
|
674
|
+
supervisely/convert/pointcloud/nuscenes_conv/nuscenes_converter.py,sha256=6fmghSfqa_bBA5vy3I9pzdHpGp2CMc45hber8NMGz8E,10480
|
|
652
675
|
supervisely/convert/pointcloud/ply/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
653
676
|
supervisely/convert/pointcloud/ply/ply_converter.py,sha256=2ZCYkhJQzUev-sWGsBwCPtj1TGjdcx8o-Q--RAHavp8,2698
|
|
654
677
|
supervisely/convert/pointcloud/ply/ply_helper.py,sha256=YfLiV9m6a4NNEMs0J32dmMTLffMLX4-JPTThMHOEK4w,268
|
|
@@ -665,25 +688,27 @@ supervisely/convert/pointcloud_episodes/kitti_360/kitti_360_helper.py,sha256=EHy
|
|
|
665
688
|
supervisely/convert/pointcloud_episodes/lyft/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
666
689
|
supervisely/convert/pointcloud_episodes/lyft/lyft_converter.py,sha256=QXreWUJ-QhoWgLPqRxCayatYCCCuSV6Z2XCZKScrD3o,10419
|
|
667
690
|
supervisely/convert/pointcloud_episodes/nuscenes_conv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
668
|
-
supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_converter.py,sha256=
|
|
669
|
-
supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_helper.py,sha256=
|
|
691
|
+
supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_converter.py,sha256=R0_y5AKXUh3IdIvaU_UxG9IdTJcCOTbq52yAXcRQf4g,13982
|
|
692
|
+
supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_helper.py,sha256=BoT5CxSjoUJf1l_X6WbSu7md6IXE74PtQDZsrh18Y4s,9756
|
|
670
693
|
supervisely/convert/pointcloud_episodes/sly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
671
694
|
supervisely/convert/pointcloud_episodes/sly/sly_pointcloud_episodes_converter.py,sha256=mHmmxeP63oaaXBTEMsmR4hISAiPVptn6qriNGTPPXzo,6322
|
|
672
695
|
supervisely/convert/pointcloud_episodes/sly/sly_pointcloud_episodes_helper.py,sha256=h4WvNH6cEHtjxxhCnU7Hs2vkyJMye0qwabqXNYVTywE,3570
|
|
673
|
-
supervisely/convert/video/__init__.py,sha256=
|
|
674
|
-
supervisely/convert/video/video_converter.py,sha256=
|
|
696
|
+
supervisely/convert/video/__init__.py,sha256=VHtkHLEBl3Q9LKJM30e7lO2FVhJ2GDoXQbJqbBl-89A,241
|
|
697
|
+
supervisely/convert/video/video_converter.py,sha256=6PagxQ-TATyMjl7DLa34AC80JjEP7NnFDFVtIOKXOHQ,12139
|
|
675
698
|
supervisely/convert/video/davis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
676
699
|
supervisely/convert/video/davis/davis_converter.py,sha256=zaPsJdN6AvyPT7fVnswuPbgrz5T-X2RFbHEdkuMhWGk,415
|
|
677
700
|
supervisely/convert/video/mot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
678
701
|
supervisely/convert/video/mot/mot_converter.py,sha256=wXbv-9Psc2uVnhzHuOt5VnRIvSg70NDPQSoKdWwL4Lo,490
|
|
702
|
+
supervisely/convert/video/multi_view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
703
|
+
supervisely/convert/video/multi_view/multi_view.py,sha256=_A-lXnkGoy16HXtNhKgWRJKrDZADyzR9GxSL5kTs9mg,21902
|
|
679
704
|
supervisely/convert/video/sly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
680
|
-
supervisely/convert/video/sly/sly_video_converter.py,sha256=
|
|
705
|
+
supervisely/convert/video/sly/sly_video_converter.py,sha256=yiCMpCwpQv-fxp5aWgRF6Nf7bdFMHQ1nE5RQsXOLMLk,19606
|
|
681
706
|
supervisely/convert/video/sly/sly_video_helper.py,sha256=sT1Q7RQHkIjNezYASVyLYixLPQdpP0m4Lxzqxa_QXBI,6873
|
|
682
707
|
supervisely/convert/volume/__init__.py,sha256=NaACs000WT2iy_g63TiZZ6IlgCjyDXx6i2OHsGpCYOs,391
|
|
683
708
|
supervisely/convert/volume/volume_converter.py,sha256=3jpt2Yn_G4FSP_vHFsJHQfYNQpT7q6ar_sRyr_xrPnA,5335
|
|
684
709
|
supervisely/convert/volume/dicom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
685
|
-
supervisely/convert/volume/dicom/dicom_converter.py,sha256=
|
|
686
|
-
supervisely/convert/volume/dicom/dicom_helper.py,sha256
|
|
710
|
+
supervisely/convert/volume/dicom/dicom_converter.py,sha256=CrS2JppbFEOquH_DemxPUSY_2kR0Usqn6Znryq40png,3412
|
|
711
|
+
supervisely/convert/volume/dicom/dicom_helper.py,sha256=-yZA9Sr5kgrw477_7JzxxPJdO-cV7fLPVxB9VQmmFfc,3384
|
|
687
712
|
supervisely/convert/volume/nii/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
688
713
|
supervisely/convert/volume/nii/nii_planes_volume_converter.py,sha256=XQ5o7mg3OJ9UO-wM14O718TIkVXeXDAz-lJDV--0UE8,20043
|
|
689
714
|
supervisely/convert/volume/nii/nii_volume_converter.py,sha256=gR1_dfUf0L-K49B8qVHF7DiiDKDmxUQKKSPLdlqoYC4,8691
|
|
@@ -703,18 +728,19 @@ supervisely/geometry/any_geometry.py,sha256=BOZBsuMYgtkA7cOKp-URjzV9zQkpHuvfp2QP
|
|
|
703
728
|
supervisely/geometry/bitmap.py,sha256=-tyIXCfgvNn3c7jHs18aq693JR5xdvhfNf6Vmf4952g,21869
|
|
704
729
|
supervisely/geometry/bitmap_base.py,sha256=lNamVL3gZ355oYlIEPc0yC84k1bxuCbUVI0ouaZ_Q4k,13814
|
|
705
730
|
supervisely/geometry/closed_surface_mesh.py,sha256=3ZplCm3Q2bhPcxNmtv2U1UfdezRkC3_BxjwH4yl7wrs,1558
|
|
706
|
-
supervisely/geometry/constants.py,sha256=
|
|
731
|
+
supervisely/geometry/constants.py,sha256=V27j00qghLa7reSB2WgwbFBLjCblG5GHpaMWIk_xkyQ,858
|
|
707
732
|
supervisely/geometry/conversions.py,sha256=ZY6xWYFWaDA5KDJkcIBBP8LAmMfZwxMeVFfYUYEM6fw,1170
|
|
708
733
|
supervisely/geometry/cuboid.py,sha256=GVHeUrVgfjUjE3PorV_vtge6_thDvvUYI5-9_HZjfWs,21077
|
|
709
734
|
supervisely/geometry/cuboid_2d.py,sha256=I0-V0SPlM-NTStfzDyc7YjW9XSOguCs4yhDZS7-qtZ4,14358
|
|
710
735
|
supervisely/geometry/cuboid_3d.py,sha256=x472ZPHTZDIY5Dj8tKbLQG3BCukFPgSvPJlxfHdKi1w,4168
|
|
711
|
-
supervisely/geometry/geometry.py,sha256=
|
|
736
|
+
supervisely/geometry/geometry.py,sha256=RwWeAkm98_FyTXCzcRc7sVfsBhMa6RSgcZFCNd4NPis,15481
|
|
712
737
|
supervisely/geometry/graph.py,sha256=kSShcGU4kZgwAbvTrqGzC55qha0nI7M5luiMZSbNx_4,24486
|
|
713
|
-
supervisely/geometry/helpers.py,sha256=
|
|
738
|
+
supervisely/geometry/helpers.py,sha256=Eizo5Nos9sxv3dQyAGzqQAQ1-TlYRxOoJHJmzy_ciiw,5317
|
|
714
739
|
supervisely/geometry/image_rotator.py,sha256=wrU8cXEUfuNcmPms2myUV4BpZqz_2oDArsEUFeiTpxs,6888
|
|
715
740
|
supervisely/geometry/main_tests.py,sha256=K3Olsz9igHDW2IfIA5JOpjoE8bZ3ex2PXvVR2ZCDrHU,27199
|
|
716
741
|
supervisely/geometry/mask_3d.py,sha256=-wGhQcoksnzUEvxe1joM4y2AIrnbNNxAfgWv5i5CM54,26886
|
|
717
742
|
supervisely/geometry/multichannel_bitmap.py,sha256=dL0igkOCVZiIZ9LDU7srFLA50XGo4doE-B5_E1uboXM,4968
|
|
743
|
+
supervisely/geometry/oriented_bbox.py,sha256=PkDqHrxrJnTRUJiWP2mLs7rUn1H-EwNMwLZd2LeLlCc,24466
|
|
718
744
|
supervisely/geometry/point.py,sha256=7ed_Ipd-Ab8ZeqJF5ft0kP9pKVb2iWXCxPuRhMuweMc,13228
|
|
719
745
|
supervisely/geometry/point_3d.py,sha256=0ico0aV4fuKNBVrysDjUy1Cx1S9CEzBlEVE3AsbVd0E,1669
|
|
720
746
|
supervisely/geometry/point_location.py,sha256=ufGPj5BShL3QbE1eAMlnKpSSnb1S23GfskGmS0cU7u0,12109
|
|
@@ -722,7 +748,7 @@ supervisely/geometry/pointcloud.py,sha256=cc4P_UNLGx5dWah3caRJytW7_mAi8UnYsJOa20
|
|
|
722
748
|
supervisely/geometry/polygon.py,sha256=lqXS8xkBay8UhkVsB7eG_gRhwP1lBqyPaEri85ZMK8c,11597
|
|
723
749
|
supervisely/geometry/polyline.py,sha256=r6KKJhJT8Au9Ds94Oa7saKdz2IPaEtR4SuVJBc4-uiA,8191
|
|
724
750
|
supervisely/geometry/polyline_3d.py,sha256=3uG-SszDH2iZPo2ES9ibMxvAjO2gEmr2PZIqN53Q2Hs,3458
|
|
725
|
-
supervisely/geometry/rectangle.py,sha256=
|
|
751
|
+
supervisely/geometry/rectangle.py,sha256=E9H55ZAymAwRDyI963WX5gOe9osH-bATv4iTRCl5UZc,33968
|
|
726
752
|
supervisely/geometry/sliding_windows.py,sha256=VWtE3DS9AaIlS0ch0PY6wwtWU89J82icDRZ-F0LFrjM,1700
|
|
727
753
|
supervisely/geometry/sliding_windows_fuzzy.py,sha256=InvJlH6MEW55DM1IdoMHP2MLFLieTDZfHrZZEINLQOc,3626
|
|
728
754
|
supervisely/geometry/validation.py,sha256=G5vjtiXTCaTQvWegPIBiNw8pN_GiY86OUSRSsccdyLU,2139
|
|
@@ -735,9 +761,9 @@ supervisely/imaging/font.py,sha256=0XcmWhlw7y2PAhrWgcsfInyRWj0WnlFpMSEXXilR8UA,2
|
|
|
735
761
|
supervisely/imaging/image.py,sha256=1KNc4qRbP9OlI4Yta07Kc2ohAgSBJ_9alF9Jag74w30,41873
|
|
736
762
|
supervisely/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
737
763
|
supervisely/io/docker_utils.py,sha256=hb_HXGM8IYB0PF-nD7NxMwaHgzaxIFxofsUzQ_RCUZI,7935
|
|
738
|
-
supervisely/io/env.py,sha256=
|
|
764
|
+
supervisely/io/env.py,sha256=9H9qXeqxw59zMAhSqlxucSc0MRfK6XI50SFcKhGMq4I,27448
|
|
739
765
|
supervisely/io/exception_handlers.py,sha256=22LPlLgyq59DnrhpaFrbGBYJE7uxO64VTZjsPJC0PLE,36757
|
|
740
|
-
supervisely/io/fs.py,sha256=
|
|
766
|
+
supervisely/io/fs.py,sha256=lostfe9Vb9eq_GBNv0ccDGZQf4aRCEA5sNx2KZlwXxg,64334
|
|
741
767
|
supervisely/io/fs_cache.py,sha256=985gvBGzveLcDudgz10E4EWVjP9jxdU1Pa0GFfCBoCA,6520
|
|
742
768
|
supervisely/io/github_utils.py,sha256=jGmvQJ5bjtACuSFABzrxL0jJdh14SezovrHp8T-9y8g,1779
|
|
743
769
|
supervisely/io/json.py,sha256=25gBqA8nkKZW1xvssdmRYuJrO5fmIR0Z5cZGePfrJV4,8539
|
|
@@ -760,7 +786,7 @@ supervisely/metric/precision_recall_metric.py,sha256=4AQCkcB84mpYQS94yJ-wkG1LBuX
|
|
|
760
786
|
supervisely/metric/projects_applier.py,sha256=ORtgLQHYtNi4KYsSGaGPPWiZPexTJF9IWqX_RuLRxPk,3415
|
|
761
787
|
supervisely/nn/__init__.py,sha256=ZGCDjx_cGIW8CxIWNCzVDRVfAzt7QzlkcvKvLBE8wMc,669
|
|
762
788
|
supervisely/nn/experiments.py,sha256=1m5qq7LbHEVzI6nS4dFZg1zwJvjmhIvUoQ3iFhD8GBc,10387
|
|
763
|
-
supervisely/nn/prediction_dto.py,sha256=
|
|
789
|
+
supervisely/nn/prediction_dto.py,sha256=Is_Prrh3gQQ7sGt8kLlmgxDaIA2J22XdWVAF-25wuvI,3469
|
|
764
790
|
supervisely/nn/task_type.py,sha256=UJvSJ4L3I08j_e6sU6Ptu7kS5p1H09rfhfoDUSZ2iys,522
|
|
765
791
|
supervisely/nn/utils.py,sha256=WoEidpLo5__R6eXsvEFH7VRxb4MtXCr9H-kchg25FDY,2965
|
|
766
792
|
supervisely/nn/artifacts/__init__.py,sha256=DOkRrpvwQoTMH1GaAGHxwgYWshORAhxpeyvzmXt_F50,588
|
|
@@ -778,7 +804,7 @@ supervisely/nn/artifacts/yolov5.py,sha256=v0fgBzT556pV0OhlmnWzZQGuMJWfodjQjHQdrJ
|
|
|
778
804
|
supervisely/nn/artifacts/yolov8.py,sha256=xeQZy7CM5QvA2BuqLyBuH9GpTY8FyRzvUtsPRINrVmw,1713
|
|
779
805
|
supervisely/nn/benchmark/__init__.py,sha256=7jDezvavJFtO9mDeB2TqW8N4sD8TsHQBPpA9RESleIQ,610
|
|
780
806
|
supervisely/nn/benchmark/base_benchmark.py,sha256=SltD3T2Nbo3h0RLfPShWmGrpHJOzSmF7IK6G4unXm4c,26055
|
|
781
|
-
supervisely/nn/benchmark/base_evaluator.py,sha256=
|
|
807
|
+
supervisely/nn/benchmark/base_evaluator.py,sha256=G0bgX1k3JGUohAL1WWaoOJnkJpOXHRPWokOZVqu560c,9422
|
|
782
808
|
supervisely/nn/benchmark/base_visualizer.py,sha256=vEAvavKAmTmP035ldHN0iiEKvkkf__mjGl_tUrW9pvg,10154
|
|
783
809
|
supervisely/nn/benchmark/cv_tasks.py,sha256=ShoAbuNzfMYj0Se-KOnl_-dJnrmvN6Aukxa0eq28bFw,239
|
|
784
810
|
supervisely/nn/benchmark/comparison/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -811,14 +837,14 @@ supervisely/nn/benchmark/comparison/semantic_segmentation/vis_metrics/speedtest.
|
|
|
811
837
|
supervisely/nn/benchmark/instance_segmentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
812
838
|
supervisely/nn/benchmark/instance_segmentation/benchmark.py,sha256=lTDzgKGpfeF5o_a2nS56wiAsUQPH1eubk37b9CaB2KI,1171
|
|
813
839
|
supervisely/nn/benchmark/instance_segmentation/evaluation_params.yaml,sha256=fEYA-ExmxDiSzRl7YfBMpF6LZui0tcDgZyC-YUvmmqg,367
|
|
814
|
-
supervisely/nn/benchmark/instance_segmentation/evaluator.py,sha256=
|
|
840
|
+
supervisely/nn/benchmark/instance_segmentation/evaluator.py,sha256=LKFPBupdL3GhZGTD9Exl8RybDq5DggoqJ19CLTfoFRM,2535
|
|
815
841
|
supervisely/nn/benchmark/instance_segmentation/text_templates.py,sha256=usKqm_FaO-WXiopxzrdjpIrOqHdqFQ89lmYoayzt6KM,25597
|
|
816
842
|
supervisely/nn/benchmark/instance_segmentation/visualizer.py,sha256=8NscOKy7JK4AG-Czu3SM0qJQXLDfKD9URdG1d4nz89E,564
|
|
817
843
|
supervisely/nn/benchmark/object_detection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
818
844
|
supervisely/nn/benchmark/object_detection/base_vis_metric.py,sha256=44Em214YPxZgn2hEzFvqBcnjsyiElD9TSuLamwUnx20,1611
|
|
819
845
|
supervisely/nn/benchmark/object_detection/benchmark.py,sha256=Wb4xlFXilIMVfsifNNQY25uE52NeEDLzQpnq8QPYq9U,1086
|
|
820
846
|
supervisely/nn/benchmark/object_detection/evaluation_params.yaml,sha256=fEYA-ExmxDiSzRl7YfBMpF6LZui0tcDgZyC-YUvmmqg,367
|
|
821
|
-
supervisely/nn/benchmark/object_detection/evaluator.py,sha256=
|
|
847
|
+
supervisely/nn/benchmark/object_detection/evaluator.py,sha256=Aa6hWbvEmohqVlQBfBQrT92Py99ZYC0va3LZayyuXHE,8078
|
|
822
848
|
supervisely/nn/benchmark/object_detection/metric_provider.py,sha256=_fxS24Q8KhE2n2HknMnt86xVPYEDFw5atxsvXRnCl4w,23855
|
|
823
849
|
supervisely/nn/benchmark/object_detection/text_templates.py,sha256=4BgTIX1Co4WK9_VSUa1qWCmh5OJzo3_opVU6LOjKSjc,25842
|
|
824
850
|
supervisely/nn/benchmark/object_detection/visualizer.py,sha256=4BOkSYl8rlvOKO87ZlmZuZCsAM9QTqDqAgNMoiwE8eI,32622
|
|
@@ -835,7 +861,7 @@ supervisely/nn/benchmark/object_detection/vis_metrics/model_predictions.py,sha25
|
|
|
835
861
|
supervisely/nn/benchmark/object_detection/vis_metrics/outcome_counts.py,sha256=yPC-6ionooo0eUEiKSOFb-LkhqOuWUXwWvQt6SBQ4Ws,4414
|
|
836
862
|
supervisely/nn/benchmark/object_detection/vis_metrics/outcome_counts_per_class.py,sha256=FDba0gWJWnf7mGtl79TONC2fihc39sc-tXCVLYCt84Y,6852
|
|
837
863
|
supervisely/nn/benchmark/object_detection/vis_metrics/overview.py,sha256=-22iCkQkpSQP5SZclyM0H9jSs-EynEbBgnhJKayG634,6923
|
|
838
|
-
supervisely/nn/benchmark/object_detection/vis_metrics/pr_curve.py,sha256=
|
|
864
|
+
supervisely/nn/benchmark/object_detection/vis_metrics/pr_curve.py,sha256=c0Qc5hOU4WFvJaeTKy1SWtt1WXgXYqt7miMiYOc7DlE,3644
|
|
839
865
|
supervisely/nn/benchmark/object_detection/vis_metrics/pr_curve_by_class.py,sha256=Bl_buVvH8SVqwsc4DcHnojMOqpwTnRgXFt9yw_Y1BR0,1607
|
|
840
866
|
supervisely/nn/benchmark/object_detection/vis_metrics/precision.py,sha256=lrxCH82blwMVAxofLDmqPPgs7V1S9AFgmfxtHAoWEdI,2973
|
|
841
867
|
supervisely/nn/benchmark/object_detection/vis_metrics/precision_avg_per_class.py,sha256=IetoRTE9xZHHMZlPwUmQyTnaD7cQpnIQ3zJmUUr6fgY,1965
|
|
@@ -847,20 +873,20 @@ supervisely/nn/benchmark/semantic_segmentation/__init__.py,sha256=Hx5bFhRZq8BXvN
|
|
|
847
873
|
supervisely/nn/benchmark/semantic_segmentation/base_vis_metric.py,sha256=mwGjRUTPrIj56WHsxNW_4fcZM0uw1xm6B5wh25FijyQ,1788
|
|
848
874
|
supervisely/nn/benchmark/semantic_segmentation/benchmark.py,sha256=8rnU6I94q0GUdXWwluZu0_Sac_eU2-Az133tHF1dA3U,1202
|
|
849
875
|
supervisely/nn/benchmark/semantic_segmentation/evaluation_params.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
850
|
-
supervisely/nn/benchmark/semantic_segmentation/evaluator.py,sha256=
|
|
876
|
+
supervisely/nn/benchmark/semantic_segmentation/evaluator.py,sha256=UJFqShclxzgyJ_Zi2sBM0vAb5RnUgR-iLxh6xnZJhqw,8253
|
|
851
877
|
supervisely/nn/benchmark/semantic_segmentation/metric_provider.py,sha256=XDVhsYV9l3S-LooRuMtDYSPos4iviOML-id1CVqg0XU,6438
|
|
852
878
|
supervisely/nn/benchmark/semantic_segmentation/text_templates.py,sha256=7yRRD2FAdJHGSRqBVIjNjzCduKzaepA1OWtggi7B0Dg,8580
|
|
853
879
|
supervisely/nn/benchmark/semantic_segmentation/visualizer.py,sha256=ny7S9cYdYeRL5je5eGpJOneVSz7MxZdykImPdNQ8uPY,13500
|
|
854
880
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
855
881
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/acknowledgement.py,sha256=Lm82x8AIMKv1WqmqA0W9fugSlQ_JrP9dwYYYReZmhvI,440
|
|
856
882
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/classwise_error_analysis.py,sha256=0bmL43a4cqw3grFoG68NN8Y1fkRpHBIRJptcxMor-78,1884
|
|
857
|
-
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/confusion_matrix.py,sha256=
|
|
883
|
+
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/confusion_matrix.py,sha256=Ly4IEtcApYW094duiwdGc3KdfhTUe-TgqTLIauqOr5I,3272
|
|
858
884
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/explore_predictions.py,sha256=QVtcGQv4S8W7jLANUsvuJaPP-OrUQ_LB2oEpjpLBecw,2936
|
|
859
|
-
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/frequently_confused.py,sha256=
|
|
885
|
+
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/frequently_confused.py,sha256=TEOlRJJks78wcJvPjz6mHLAMC7GRBpTeqUHs94uJEpY,3705
|
|
860
886
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/iou_eou.py,sha256=IdUho3712dDLyVsgR01aNSQBcraPzYwpJmTc9AB0Txw,1401
|
|
861
887
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/key_metrics.py,sha256=5FQhaYS_Vvnc4qQy50utj57Bfw26ZwnBvb5P3vXJH5Q,2765
|
|
862
888
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/model_predictions.py,sha256=1ysQLOmYJvrCPdqkXhRb5p_TyyXWdAVBDXoCJpfZrNo,3807
|
|
863
|
-
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/overview.py,sha256=
|
|
889
|
+
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/overview.py,sha256=E2ztMvtEml5PmsDFcIJBXGxi-2KEnRZ5-WBpKQz9Ge8,4784
|
|
864
890
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/renormalized_error_ou.py,sha256=w4oqirf_o7uz0fwaapaFR0ByjCBSEfMv--ZgEZTkuFQ,1575
|
|
865
891
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/speedtest.py,sha256=0UP_HReIciHQyU6sOXnWhAzyVBoGznV7ZHF8m4vEVX0,5941
|
|
866
892
|
supervisely/nn/benchmark/semantic_segmentation/vis_metrics/vis_texts.py,sha256=rRdYZxmhQX4T3RsXJVGp34NMZPz8jUHtVvBN5BpPJ5I,603
|
|
@@ -877,7 +903,7 @@ supervisely/nn/benchmark/utils/semantic_segmentation/evaluator.py,sha256=iPHRo1L
|
|
|
877
903
|
supervisely/nn/benchmark/utils/semantic_segmentation/loader.py,sha256=_5ZZ7Nkd8WWYJnKwc1Dx3bEPS_1R84gG_hQc0w0TXWw,1957
|
|
878
904
|
supervisely/nn/benchmark/utils/semantic_segmentation/utils.py,sha256=X5NiR02R-0To2_SuSGHZZccl_-Bupg5F9d7nziIMRMc,3874
|
|
879
905
|
supervisely/nn/benchmark/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
880
|
-
supervisely/nn/benchmark/visualization/evaluation_result.py,sha256=
|
|
906
|
+
supervisely/nn/benchmark/visualization/evaluation_result.py,sha256=kI6jejYx2slLlPnBSp1XSx1Ud-R4PYsGrAO5CbguE0I,12939
|
|
881
907
|
supervisely/nn/benchmark/visualization/renderer.py,sha256=j6dFqIGa9M0DbVVR-jgJab-MzUUiw47coHiiBF_H_jQ,3923
|
|
882
908
|
supervisely/nn/benchmark/visualization/report_template.html,sha256=tylBK5Bb2cqKACK1GZUKyIjPS9yHQFHAS-QeEEwhqTE,2172
|
|
883
909
|
supervisely/nn/benchmark/visualization/vis_click_data.py,sha256=4YE0nJJrzuBEbGChzkivblC-pAwEeXsKU55sXVZQyt0,3716
|
|
@@ -904,16 +930,16 @@ supervisely/nn/benchmark/visualization/widgets/sidebar/sidebar.py,sha256=tKPURRS
|
|
|
904
930
|
supervisely/nn/benchmark/visualization/widgets/table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
905
931
|
supervisely/nn/benchmark/visualization/widgets/table/table.py,sha256=atmDnF1Af6qLQBUjLhK18RMDKAYlxnsuVHMSEa5a-e8,4319
|
|
906
932
|
supervisely/nn/inference/__init__.py,sha256=QFukX2ip-U7263aEPCF_UCFwj6EujbMnsgrXp5Bbt8I,1623
|
|
907
|
-
supervisely/nn/inference/cache.py,sha256=
|
|
908
|
-
supervisely/nn/inference/inference.py,sha256=
|
|
909
|
-
supervisely/nn/inference/inference_request.py,sha256=
|
|
910
|
-
supervisely/nn/inference/session.py,sha256=
|
|
911
|
-
supervisely/nn/inference/uploader.py,sha256=
|
|
933
|
+
supervisely/nn/inference/cache.py,sha256=VNFmZk9-yOJYEvIayCsJA6O2IUA2vUqIcFv7x_b80RY,36072
|
|
934
|
+
supervisely/nn/inference/inference.py,sha256=BX9IHDoQTpwRhoGh6yKFJiinL1zwfaI3SO0GBT3xwlc,232833
|
|
935
|
+
supervisely/nn/inference/inference_request.py,sha256=WjegzCXBizTyf9mprlJfiHXx1O4zolLSNBrKdmVRKr0,15969
|
|
936
|
+
supervisely/nn/inference/session.py,sha256=17abxb237JMftb12gPV-R07N6bUZwIaL4N39K-BupAQ,36357
|
|
937
|
+
supervisely/nn/inference/uploader.py,sha256=KaKbuHMG5KJAW50jpBm0PNyK0dJRH9U1ZUiWqHVzSVc,9904
|
|
912
938
|
supervisely/nn/inference/video_inference.py,sha256=8Bshjr6rDyLay5Za8IB8Dr6FURMO2R_v7aELasO8pR4,5746
|
|
913
939
|
supervisely/nn/inference/gui/__init__.py,sha256=wCxd-lF5Zhcwsis-wScDA8n1Gk_1O00PKgDviUZ3F1U,221
|
|
914
940
|
supervisely/nn/inference/gui/gui.py,sha256=0OjGcU0KGZgWfLVQkBbljNy-QV22pdZ0bbpPvao5fx0,20143
|
|
915
941
|
supervisely/nn/inference/gui/serving_gui.py,sha256=JCIVp3B_tX0VKMMBJ-TdRzzAMnAL-sdqHnb1vd28r50,8596
|
|
916
|
-
supervisely/nn/inference/gui/serving_gui_template.py,sha256=
|
|
942
|
+
supervisely/nn/inference/gui/serving_gui_template.py,sha256=akU5AsJul8_cLx9rf1wE6obp8Q3V0UAEx-e1fhSneXM,10660
|
|
917
943
|
supervisely/nn/inference/instance_segmentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
918
944
|
supervisely/nn/inference/instance_segmentation/instance_segmentation.py,sha256=7B5PLkbCv6e5oqqia6Ugf3OUlff_83kYfcAk_3GJXRg,2261
|
|
919
945
|
supervisely/nn/inference/instance_segmentation/dashboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -932,17 +958,17 @@ supervisely/nn/inference/object_detection_3d/object_detection_3d.py,sha256=GmBz7
|
|
|
932
958
|
supervisely/nn/inference/pose_estimation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
933
959
|
supervisely/nn/inference/pose_estimation/pose_estimation.py,sha256=oI-zWO7zY0-tHwGhSFmno3eSwE5I0BDKRDrZBoU9jPY,6452
|
|
934
960
|
supervisely/nn/inference/predict_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
935
|
-
supervisely/nn/inference/predict_app/predict_app.py,sha256=
|
|
961
|
+
supervisely/nn/inference/predict_app/predict_app.py,sha256=jgpNLfbi5sQCiOYITHegoS3OaB-IYCRUqCB8K99_ays,6394
|
|
936
962
|
supervisely/nn/inference/predict_app/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
937
|
-
supervisely/nn/inference/predict_app/gui/classes_selector.py,sha256=
|
|
938
|
-
supervisely/nn/inference/predict_app/gui/gui.py,sha256=
|
|
939
|
-
supervisely/nn/inference/predict_app/gui/input_selector.py,sha256=
|
|
940
|
-
supervisely/nn/inference/predict_app/gui/model_selector.py,sha256=
|
|
941
|
-
supervisely/nn/inference/predict_app/gui/output_selector.py,sha256=
|
|
963
|
+
supervisely/nn/inference/predict_app/gui/classes_selector.py,sha256=3CJscsSiRPtjInrifzeVZ03nrHNh3Q9gV_YfP1coI5w,6470
|
|
964
|
+
supervisely/nn/inference/predict_app/gui/gui.py,sha256=Zkp3M2aKZEKX6kZQbYiaSPiTEFM_Ul_xtuNozQ7dkMs,39526
|
|
965
|
+
supervisely/nn/inference/predict_app/gui/input_selector.py,sha256=PBvVy4pS2jNuSav0wr89POpUFr5Z2WUghDg-7vt96GI,13776
|
|
966
|
+
supervisely/nn/inference/predict_app/gui/model_selector.py,sha256=UvUErutEI8COCWA1WU5MMvMrju0k7W_65Sgp7URa9Qc,2369
|
|
967
|
+
supervisely/nn/inference/predict_app/gui/output_selector.py,sha256=IEwR3CJUAh26eztfdPqfIyzjfyAHbV-fRTwmuwJE09g,6535
|
|
942
968
|
supervisely/nn/inference/predict_app/gui/preview.py,sha256=UpOrXmjV32qDRdRKPO15BbRVIzhIEh906BkUtjjGaio,2871
|
|
943
|
-
supervisely/nn/inference/predict_app/gui/settings_selector.py,sha256=
|
|
944
|
-
supervisely/nn/inference/predict_app/gui/tags_selector.py,sha256=
|
|
945
|
-
supervisely/nn/inference/predict_app/gui/utils.py,sha256=
|
|
969
|
+
supervisely/nn/inference/predict_app/gui/settings_selector.py,sha256=oOsdV9JeQ92X3D1N9ADW-MtSa-VysXmPZ_tmo-7eAbc,35944
|
|
970
|
+
supervisely/nn/inference/predict_app/gui/tags_selector.py,sha256=hikTeWKlt0xPTM-4B47o3oXnP64pmWNvoaFHeU5DOZU,3568
|
|
971
|
+
supervisely/nn/inference/predict_app/gui/utils.py,sha256=ifhffdGDivtejJ1V385dIlGjESTAvsgqHQNEMxxmuGw,13725
|
|
946
972
|
supervisely/nn/inference/prompt_based_object_detection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
947
973
|
supervisely/nn/inference/prompt_based_object_detection/propmt_based_object_detection.py,sha256=giw7BglO1ZcMhvHr_qTWeyA7ZJiaee_a3kbUnZe11K8,295
|
|
948
974
|
supervisely/nn/inference/promptable_segmentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -953,13 +979,13 @@ supervisely/nn/inference/semantic_segmentation/__init__.py,sha256=47DEQpj8HBSa-_
|
|
|
953
979
|
supervisely/nn/inference/semantic_segmentation/semantic_segmentation.py,sha256=xpmViSYm1v_ZxlYyqiD_DiB7_LEynv9ZoU0t2QHEx8A,3370
|
|
954
980
|
supervisely/nn/inference/tracking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
955
981
|
supervisely/nn/inference/tracking/base_tracking.py,sha256=pAxmuiPyuMuwSaOkLedqSVnqiZjk2Wlt03kyiLl5oxA,12434
|
|
956
|
-
supervisely/nn/inference/tracking/bbox_tracking.py,sha256=
|
|
982
|
+
supervisely/nn/inference/tracking/bbox_tracking.py,sha256=UXattDghZtwOFwEqjsA5bOozhqR1IoJb2b5PwjJdTnM,28053
|
|
957
983
|
supervisely/nn/inference/tracking/functional.py,sha256=LpVu2gvOOpr9D_uvwTPZey1wUCAhV-E20RPKmCSIrK4,1774
|
|
958
984
|
supervisely/nn/inference/tracking/mask_tracking.py,sha256=Sl7HzznNIvUmCfPporOqDa2kbSmeTvU1hSkLgeWg3kc,25499
|
|
959
985
|
supervisely/nn/inference/tracking/object_tracking_3d.py,sha256=Kqvx1qe1G8F1VtdBiy2HJ251rJU6s3LWhj0ZedhrmUw,4327
|
|
960
986
|
supervisely/nn/inference/tracking/point_tracking.py,sha256=8y20hzS8qDAZlAQhr-tLKUMyckklg-k1nyW6B8ZmG0k,24948
|
|
961
987
|
supervisely/nn/inference/tracking/tracker3d_interface.py,sha256=7yIkNO9rgkzQuyXUUccLwqlv5k7RPbxTqz9uI4FylLE,2781
|
|
962
|
-
supervisely/nn/inference/tracking/tracker_interface.py,sha256=
|
|
988
|
+
supervisely/nn/inference/tracking/tracker_interface.py,sha256=jdZR4lvGzaFJtsC2flLvdg01EFyqX435BW29fzX7W3E,24471
|
|
963
989
|
supervisely/nn/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
964
990
|
supervisely/nn/legacy/config.py,sha256=TKdyGtURJKzKoyydCZAfujoUnbC0SO8GeVLTSnoyS_w,2994
|
|
965
991
|
supervisely/nn/legacy/dataset.py,sha256=-56EI6OYbkTWx4y8hOgD76y47zUoJNjGFyZ6JaP8iqg,6055
|
|
@@ -991,18 +1017,28 @@ supervisely/nn/legacy/pytorch/metrics.py,sha256=3jjkZpMP8bqFjOXzyNATxcXA8X4NjfHG
|
|
|
991
1017
|
supervisely/nn/legacy/pytorch/weights.py,sha256=Zb9kcpUCg6ykr7seO53CkKSQa2K44wo8l27D3sc_Gbo,3354
|
|
992
1018
|
supervisely/nn/legacy/training/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
993
1019
|
supervisely/nn/legacy/training/eval_planner.py,sha256=zN9b0_CX7sWGdC8e6riTvD-NOUc3_Xduyhj00S7PEIo,1311
|
|
1020
|
+
supervisely/nn/live_training/__init__.py,sha256=6qBcQDTtUVKzVMbigcMEdsXeyT95aGmiA11PyHFyIxk,339
|
|
1021
|
+
supervisely/nn/live_training/api_server.py,sha256=tsfcWZaNkIyU2mtQWUnmlV4_KtHIqyyAlAI1R5B-VoI,3782
|
|
1022
|
+
supervisely/nn/live_training/artifacts_utils.py,sha256=ppMYUDI5RByPszzp6icPesFV8cLrvAPZMBCJjZsz4NY,8666
|
|
1023
|
+
supervisely/nn/live_training/checkpoint_utils.py,sha256=633cFqsjhl3DwwhBS17PeqPiSFjf5LR40bkeIz5PQvg,8487
|
|
1024
|
+
supervisely/nn/live_training/dynamic_sampler.py,sha256=JCRwGtTBhT2RvCIdPz8kg4ukRK6K6xJvG5u05pxYTDQ,1335
|
|
1025
|
+
supervisely/nn/live_training/helpers.py,sha256=hAfkVjtUxDZs8djGBAKqYmhpLFD_6jdBBM2xiuBAnPA,610
|
|
1026
|
+
supervisely/nn/live_training/incremental_dataset.py,sha256=xujhb18IdWgqTY9uisvfeNrYYrCqiRknK9EuZbZ6lxk,4865
|
|
1027
|
+
supervisely/nn/live_training/live_training.py,sha256=Z3NdOZK-AqVvOJi_djWzYjBLH96r0nJiuQLNeeftk_0,19013
|
|
1028
|
+
supervisely/nn/live_training/loss_plateau_detector.py,sha256=Wpi-SPKjdBknUPfP05IY-2_SwxgucxVFTk3LLQ_t04w,3736
|
|
1029
|
+
supervisely/nn/live_training/request_queue.py,sha256=N0yHVPeEL8SeKZM9ALkI5Wuo9xPQtqaruEbqDX9COlU,1520
|
|
994
1030
|
supervisely/nn/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
995
|
-
supervisely/nn/model/model_api.py,sha256=
|
|
1031
|
+
supervisely/nn/model/model_api.py,sha256=r6v6MxTkhy9N0I3KPhVhIa71k6bP94VRHS22RbJbd-U,10680
|
|
996
1032
|
supervisely/nn/model/prediction.py,sha256=gt4c80LkcBFd5-a2iHpShPDTRO81MKHSWiBp47Gb1z0,11983
|
|
997
1033
|
supervisely/nn/model/prediction_session.py,sha256=0Vs614dqG21U27OhplvzxGvHds-5CWFvj5icaOnwz3g,27837
|
|
998
1034
|
supervisely/nn/tracker/__init__.py,sha256=1Pv1zLedcZaTk1BS3ezscQbVizq7vQABlNbLhEhHkOI,326
|
|
999
|
-
supervisely/nn/tracker/base_tracker.py,sha256=
|
|
1000
|
-
supervisely/nn/tracker/botsort_tracker.py,sha256=
|
|
1035
|
+
supervisely/nn/tracker/base_tracker.py,sha256=8-LH9vrHDOhetADAH_ngm2WODC1q0dwAkpxWx7tugsY,1997
|
|
1036
|
+
supervisely/nn/tracker/botsort_tracker.py,sha256=z3qeeWfd-N0VLZYfm_oHWF3uVd6Yg6QBSqXc_rJLaFY,10834
|
|
1001
1037
|
supervisely/nn/tracker/calculate_metrics.py,sha256=JjXI4VYWYSZ5j2Ed81FNYozkS3v2UAM73ztjLrHGg58,10434
|
|
1002
1038
|
supervisely/nn/tracker/utils.py,sha256=4WdtFHSEx5Buq6aND7cD21FdH0sGg92QNIMTpC9EGD4,10126
|
|
1003
|
-
supervisely/nn/tracker/visualize.py,sha256=
|
|
1039
|
+
supervisely/nn/tracker/visualize.py,sha256=sVdCiWfZVuHQL283pJWKSzCsJ91wgmWw2Fl3Mgq7ek0,19807
|
|
1004
1040
|
supervisely/nn/tracker/botsort/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1005
|
-
supervisely/nn/tracker/botsort/botsort_config.yaml,sha256=
|
|
1041
|
+
supervisely/nn/tracker/botsort/botsort_config.yaml,sha256=FZ6MGU6fJn0ZQgXLn988h_VZhvr5xCjx_Ck3u6PzPA4,519
|
|
1006
1042
|
supervisely/nn/tracker/botsort/osnet_reid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1007
1043
|
supervisely/nn/tracker/botsort/osnet_reid/osnet.py,sha256=07-svZiVfzEf92Q3f2ffbgXPePAbO61FenaAsaGDj74,16824
|
|
1008
1044
|
supervisely/nn/tracker/botsort/osnet_reid/osnet_reid_interface.py,sha256=Qzp35-V8xv2zQUIr6vvNrTzyvdxCaa2USJVbyBae6DI,3227
|
|
@@ -1011,11 +1047,11 @@ supervisely/nn/tracker/botsort/tracker/basetrack.py,sha256=oPcXpQWev6YmpjzqWwQKZ
|
|
|
1011
1047
|
supervisely/nn/tracker/botsort/tracker/gmc.py,sha256=E6LkkVEYeBUjKaQ7VnYxMAj0fdDDWH8Es_tC1a0Z0rs,11754
|
|
1012
1048
|
supervisely/nn/tracker/botsort/tracker/kalman_filter.py,sha256=waTArMcbmpHAzb57aJ-IcS1o5-i-TX5U-0N_M_28nlo,9671
|
|
1013
1049
|
supervisely/nn/tracker/botsort/tracker/matching.py,sha256=bgnheHwWD3XZSI3OJVfdrU5bYJ44rxPHzzSElfg6LZM,6600
|
|
1014
|
-
supervisely/nn/tracker/botsort/tracker/mc_bot_sort.py,sha256=
|
|
1050
|
+
supervisely/nn/tracker/botsort/tracker/mc_bot_sort.py,sha256=R4rDke8_82lxXyTlEKm7xT9LnMgMndMuo58FjRb4op4,17785
|
|
1015
1051
|
supervisely/nn/training/__init__.py,sha256=gY4PCykJ-42MWKsqb9kl-skemKa8yB6t_fb5kzqR66U,111
|
|
1016
|
-
supervisely/nn/training/train_app.py,sha256=
|
|
1052
|
+
supervisely/nn/training/train_app.py,sha256=gQD73Ov8k2GIuFXl3BxwyuMGM4ns7io6VqtuyxsL_pU,133082
|
|
1017
1053
|
supervisely/nn/training/gui/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
1018
|
-
supervisely/nn/training/gui/classes_selector.py,sha256=
|
|
1054
|
+
supervisely/nn/training/gui/classes_selector.py,sha256=W_i1zEg9oLkHNLZr6rNY_7ypQWsp9h9G9_BUCdbtUok,13187
|
|
1019
1055
|
supervisely/nn/training/gui/gui.py,sha256=_CtpzlwP6WLFgOTBDB_4RPcaqrQPK92DwSCDvO-dIKM,51749
|
|
1020
1056
|
supervisely/nn/training/gui/hyperparameters_selector.py,sha256=tEyppV5ay7nECi6qBQ9seKgfidPa_FxxtGmqsfQapa4,7768
|
|
1021
1057
|
supervisely/nn/training/gui/input_selector.py,sha256=rmirJzpdxuYONI6y5_cvMdGWBJ--T20YTsISghATHu4,2510
|
|
@@ -1050,18 +1086,23 @@ supervisely/pointcloud_annotation/pointcloud_tag_collection.py,sha256=ICZPx-6Iwk
|
|
|
1050
1086
|
supervisely/pointcloud_episodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1051
1087
|
supervisely/pointcloud_episodes/pointcloud_episodes.py,sha256=trjCTqJEfHMnsk_HmYOTA0wr572be3tbHnk3QFCd0BE,3433
|
|
1052
1088
|
supervisely/project/__init__.py,sha256=hlzdj9Pgy53Q3qdP8LMtGTChvZHQuuShdtui2eRUQeE,2601
|
|
1053
|
-
supervisely/project/data_version.py,sha256=
|
|
1054
|
-
supervisely/project/download.py,sha256=
|
|
1055
|
-
supervisely/project/pointcloud_episode_project.py,sha256=
|
|
1056
|
-
supervisely/project/pointcloud_project.py,sha256=
|
|
1057
|
-
supervisely/project/project.py,sha256=
|
|
1058
|
-
supervisely/project/project_meta.py,sha256=
|
|
1059
|
-
supervisely/project/project_settings.py,sha256=
|
|
1089
|
+
supervisely/project/data_version.py,sha256=vCyc2_vCJv3arNk2Bu8XV__h0NTrB3oC5dq5lZhurNE,22458
|
|
1090
|
+
supervisely/project/download.py,sha256=onuhnuDjCtfyvyreNN_tue8If8OI1kq5pg9Q6AUaCI4,28692
|
|
1091
|
+
supervisely/project/pointcloud_episode_project.py,sha256=evDUGW2bzuWUaZCEP4xgatjRy8ImzPGMod_8606Ti1U,49812
|
|
1092
|
+
supervisely/project/pointcloud_project.py,sha256=99sGRkjSJfW7KPAwr1lWOHmGJu-bnOqCiXS7G8pQDtM,58127
|
|
1093
|
+
supervisely/project/project.py,sha256=VOWGMfxGYuLukHtG3Faawe3-CZRFWUJgE0rmx-ysOEs,247120
|
|
1094
|
+
supervisely/project/project_meta.py,sha256=RSnmGau8Rig9A7LHThnYyjVMXezdUyh2Y8V_m7Jrgpg,52260
|
|
1095
|
+
supervisely/project/project_settings.py,sha256=wmXMLVkP-EiFekvxYbiHpsHl-RhhtMR9vVBP7hwo35U,10084
|
|
1060
1096
|
supervisely/project/project_type.py,sha256=7mQ7zg6r7Bm2oFn5aR8n_PeLqMmOaPZd6ph7Z8ZISTw,608
|
|
1061
1097
|
supervisely/project/readme_template.md,sha256=SFAfNF_uxSBJJ45A8qZ0MRuHnwSE4Gu_Z7UJqPMgRzg,9254
|
|
1062
1098
|
supervisely/project/upload.py,sha256=ys95MXFh-rtq-EAsNsiRi3wgbFUCEsY2un3_bd5hJkE,3753
|
|
1063
|
-
supervisely/project/video_project.py,sha256=
|
|
1064
|
-
supervisely/project/volume_project.py,sha256=
|
|
1099
|
+
supervisely/project/video_project.py,sha256=4BNjNHAi-wScxdkGpXuCEOx1j4I90vrDvguMRGdmwu8,96240
|
|
1100
|
+
supervisely/project/volume_project.py,sha256=qweIXeJqsHplrN20Qzwpt0i5k5PhQJbfo87RMLSQG_s,51071
|
|
1101
|
+
supervisely/project/versioning/__init__.py,sha256=dOH7HGFq-gIGSUd8Mt_GXN4F0P28rUOxw_MWIzRrvj0,76
|
|
1102
|
+
supervisely/project/versioning/common.py,sha256=coLxLknjaxL93J_0PnLaGssRIOzaoMWWH3oiDLk7Gtk,831
|
|
1103
|
+
supervisely/project/versioning/schema_fields.py,sha256=hSNMaLkKNl0bRP3frF3mr4Lrb-gWZ2tddICxNLCOCUw,1068
|
|
1104
|
+
supervisely/project/versioning/video_schema.py,sha256=y8Gk8tDT2DOgB27AVSS_CResAlRHTDVN8h3yd8qhPvw,8605
|
|
1105
|
+
supervisely/project/versioning/volume_schema.py,sha256=y5RVKoIBL8D1K9HviYo3_B2DMo3jyfLVyQcGuURyml8,3190
|
|
1065
1106
|
supervisely/pyscripts_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1066
1107
|
supervisely/pyscripts_utils/utils.py,sha256=scEwHJvHRQa8NHIOn2eTwH6-Zc8CGdLoxM-WzH9jcRo,314
|
|
1067
1108
|
supervisely/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1079,18 +1120,24 @@ supervisely/template/base_generator.py,sha256=3nesbfRpueyRYljQSTnkMjeC8ERTOfjI88
|
|
|
1079
1120
|
supervisely/template/extensions.py,sha256=kTYxu_LrvFyUN3HByCebGq8ra7zUygcEyw4qTUHq3M4,5255
|
|
1080
1121
|
supervisely/template/template_renderer.py,sha256=SzGxRdbP59uxqcZT8kZbaHN2epK8Vjfh-0jKBpkdCBY,9709
|
|
1081
1122
|
supervisely/template/experiment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1082
|
-
supervisely/template/experiment/experiment.html.jinja,sha256=
|
|
1083
|
-
supervisely/template/experiment/experiment_generator.py,sha256=
|
|
1123
|
+
supervisely/template/experiment/experiment.html.jinja,sha256=A9Qpj2h43dWf0KeoWUIky5EIUlEcDo-ZpS_TAOyO81g,18991
|
|
1124
|
+
supervisely/template/experiment/experiment_generator.py,sha256=sM00whaVcs9qWChYACoCb_oVHQrNh0NBIxcqFlpfsbA,44515
|
|
1084
1125
|
supervisely/template/experiment/header.html.jinja,sha256=sWGWeoYeixdLUOnQDjzrfGI8K6vL93dOt7fAgNWqkvY,13751
|
|
1085
1126
|
supervisely/template/experiment/sidebar.html.jinja,sha256=4IxuJzcU1OT93mXMixE7EAMYfcn_lOVfCjS3VkEieSk,9323
|
|
1086
1127
|
supervisely/template/experiment/sly-style.css,sha256=eZBVmmGjbTEJfqg0E_VgiNKR3TKD3kulsLKa3TBk2sc,8465
|
|
1087
1128
|
supervisely/template/experiment/template.html.jinja,sha256=Sb20RybxMQyi9CjoqMXiGxQsnlyWTWK-TePdvfUe5XU,506
|
|
1129
|
+
supervisely/template/live_training/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1130
|
+
supervisely/template/live_training/header.html.jinja,sha256=t31942t6wZnTlR6EINXs1av0vW1FrIhsFYkiwpSH_GM,8285
|
|
1131
|
+
supervisely/template/live_training/live_training.html.jinja,sha256=I5VFpI2zUi34vyAQBbjdnNmsj6LSfigWUmy4bCJ5Yho,1519
|
|
1132
|
+
supervisely/template/live_training/live_training_generator.py,sha256=hWphCUHj1HR3T1yB0KC9eCBdfxAOnL9PAuOOp-wXYSY,18501
|
|
1133
|
+
supervisely/template/live_training/sly-style.css,sha256=eZBVmmGjbTEJfqg0E_VgiNKR3TKD3kulsLKa3TBk2sc,8465
|
|
1134
|
+
supervisely/template/live_training/template.html.jinja,sha256=rIHtuvWkUbfUKguQQmBKypTXss8WtiSxw7x5oiCrjBg,510
|
|
1088
1135
|
supervisely/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1089
1136
|
supervisely/user/user.py,sha256=4GSVIupPAxWjIxZmUtH3Dtms_vGV82-49kM_aaR2gBI,319
|
|
1090
1137
|
supervisely/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1091
1138
|
supervisely/video/import_utils.py,sha256=b1Nl0gscNsV0iB9nWPeqt8GrkhOeuTZsN1p-d3gDUmE,544
|
|
1092
|
-
supervisely/video/sampling.py,sha256=
|
|
1093
|
-
supervisely/video/video.py,sha256=
|
|
1139
|
+
supervisely/video/sampling.py,sha256=SA1HeS1yK0-w7oHrojuCQJIAO5UAJuO6zrdOgeE1Twc,20979
|
|
1140
|
+
supervisely/video/video.py,sha256=ufwyec2d9ekV3_CLy4VhOj3Ni0gcXIerIBHtC1KGzTQ,21400
|
|
1094
1141
|
supervisely/video_annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1095
1142
|
supervisely/video_annotation/constants.py,sha256=_gW9iMhVk1w_dUaFiaiyXn66mt13S6bkxC64xpjP-CU,529
|
|
1096
1143
|
supervisely/video_annotation/frame.py,sha256=np21FqavJ3xW9VbLbohifDwZQtF5dWIsNSGVSjn-NnY,10574
|
|
@@ -1098,14 +1145,14 @@ supervisely/video_annotation/frame_collection.py,sha256=YYA8NMywLwpzeqVZuifhwlW5
|
|
|
1098
1145
|
supervisely/video_annotation/key_id_map.py,sha256=KayYOhTtAe3ITq1-NQ82T6YIiBjmu4aJm8t4UxdvI8U,37712
|
|
1099
1146
|
supervisely/video_annotation/video_annotation.py,sha256=WsZws8ls6Og3eXQJlEp9PT5DOceMnhajr82KL-8rd6c,28901
|
|
1100
1147
|
supervisely/video_annotation/video_figure.py,sha256=r_tcVoiWWIfCa_8vmF1wPI7qlE1QQgpOqL1XQnAAqiM,25404
|
|
1101
|
-
supervisely/video_annotation/video_object.py,sha256=
|
|
1148
|
+
supervisely/video_annotation/video_object.py,sha256=5MXwmpGsBf-zRVVRuRiJ1glRz-it8NQOaUfNGylMquE,17722
|
|
1102
1149
|
supervisely/video_annotation/video_object_collection.py,sha256=vY-n7yJ5Fn6-1OiXpS65uY4_VD_VRMQL7isgSbtugFw,9108
|
|
1103
1150
|
supervisely/video_annotation/video_tag.py,sha256=cF6EoZ7lxcVacnvtVpSW7A7nbkCp8AYkRjtMCD_wqo8,18312
|
|
1104
1151
|
supervisely/video_annotation/video_tag_collection.py,sha256=CijC6DqepwraFOIsEWjEWcix7uyTWnXZLp8xGiWGx_Q,13489
|
|
1105
1152
|
supervisely/volume/__init__.py,sha256=EBZBY_5mzabXzMUQh5akusIGd16XnX9n8J0jIi_JmWw,446
|
|
1106
1153
|
supervisely/volume/nrrd_encoder.py,sha256=1lqwwyqxEvctw1ysQ70x4xPSV1uy1g5YcH5CURwL7-c,4084
|
|
1107
1154
|
supervisely/volume/nrrd_loader.py,sha256=_yqahKcqSRxunHZ5LtnUWIRA7UvIhPKOhAUwYijSGY4,9065
|
|
1108
|
-
supervisely/volume/stl_converter.py,sha256=
|
|
1155
|
+
supervisely/volume/stl_converter.py,sha256=O50-VRQM26-mj68YsmkB1lMHJ_lh-RnP09TZJQ5de8M,6336
|
|
1109
1156
|
supervisely/volume/volume.py,sha256=jDu_p1zPQxCojjtdJlVVTxfuKgVCYmMSY13Xz99k7pA,30765
|
|
1110
1157
|
supervisely/volume_annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1111
1158
|
supervisely/volume_annotation/constants.py,sha256=BdFIh56fy7vzLIjt0gH8xP01EIU-qgQIwbSHVUcABCU,569
|
|
@@ -1119,18 +1166,18 @@ supervisely/volume_annotation/volume_tag.py,sha256=MEk1ky7X8zWe2JgV-j8jXt14e8yu2
|
|
|
1119
1166
|
supervisely/volume_annotation/volume_tag_collection.py,sha256=b19ALxQc6qNRwlkbGijQIAL0q79ulh7IPZDsOivvO78,5827
|
|
1120
1167
|
supervisely/worker_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1121
1168
|
supervisely/worker_api/agent_api.py,sha256=wqL2efhlrUHJqE649vvjfLTz-9DxoPHKslMNnjylqnQ,9433
|
|
1122
|
-
supervisely/worker_api/agent_rpc.py,sha256=
|
|
1169
|
+
supervisely/worker_api/agent_rpc.py,sha256=T8yN93S9DLVIOvGwg61sr0ERx5E57LqIxItFaWqAHLY,2959
|
|
1123
1170
|
supervisely/worker_api/chunking.py,sha256=HRNo4kLAmNGL2i7gQi43a3UUFShKxjJqAJtMcE_HENg,2739
|
|
1124
1171
|
supervisely/worker_api/interfaces.py,sha256=uK_oITiPkeAvf4h-vyuHGDqNS-9ObuXjXZmWbpWAMUc,191
|
|
1125
1172
|
supervisely/worker_api/retriers.py,sha256=uzLBiRicz-_NPUprSAgr8DzXWyBEtHWjhHIRn8fX7hc,4903
|
|
1126
|
-
supervisely/worker_api/rpc_servicer.py,sha256=
|
|
1173
|
+
supervisely/worker_api/rpc_servicer.py,sha256=2SGvIKSAmTqCM65-6bUTTcRueySQ24FdDoPjsZfUbM4,12378
|
|
1127
1174
|
supervisely/worker_proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1128
1175
|
supervisely/worker_proto/worker_api_pb2.py,sha256=VQfi5JRBHs2pFCK1snec3JECgGnua3Xjqw_-b3aFxuM,59142
|
|
1129
1176
|
supervisely/worker_proto/worker_api_pb2_grpc.py,sha256=3BwQXOaP9qpdi0Dt9EKG--Lm8KGN0C5AgmUfRv77_Jk,28940
|
|
1177
|
+
supervisely-6.73.513.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
1130
1178
|
supervisely_lib/__init__.py,sha256=yRwzEQmVwSd6lUQoAUdBngKEOlnoQ6hA9ZcoZGJRNC4,331
|
|
1131
|
-
supervisely-6.73.
|
|
1132
|
-
supervisely-6.73.
|
|
1133
|
-
supervisely-6.73.
|
|
1134
|
-
supervisely-6.73.
|
|
1135
|
-
supervisely-6.73.
|
|
1136
|
-
supervisely-6.73.452.dist-info/RECORD,,
|
|
1179
|
+
supervisely-6.73.513.dist-info/METADATA,sha256=KzJ_0o5jTsU6JJM98PCjrHcXA_JxVlEkeRrd441PRDI,35955
|
|
1180
|
+
supervisely-6.73.513.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
1181
|
+
supervisely-6.73.513.dist-info/entry_points.txt,sha256=U96-5Hxrp2ApRjnCoUiUhWMqijqh8zLR03sEhWtAcms,102
|
|
1182
|
+
supervisely-6.73.513.dist-info/top_level.txt,sha256=kcFVwb7SXtfqZifrZaSE3owHExX4gcNYe7Q2uoby084,28
|
|
1183
|
+
supervisely-6.73.513.dist-info/RECORD,,
|