supervisely 6.73.374__py3-none-any.whl → 6.73.376__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.
Files changed (31) hide show
  1. supervisely/api/nn/neural_network_api.py +1 -1
  2. supervisely/app/widgets/__init__.py +1 -0
  3. supervisely/app/widgets/agent_selector/agent_selector.py +6 -0
  4. supervisely/app/widgets/agent_selector/template.html +2 -0
  5. supervisely/app/widgets/button/button.py +28 -1
  6. supervisely/app/widgets/button/template.html +1 -1
  7. supervisely/app/widgets/card/card.py +4 -0
  8. supervisely/app/widgets/card/template.html +1 -1
  9. supervisely/app/widgets/classes_table/classes_table.py +3 -1
  10. supervisely/app/widgets/fast_table/fast_table.py +16 -0
  11. supervisely/app/widgets/fast_table/script.js +6 -2
  12. supervisely/app/widgets/fast_table/template.html +1 -0
  13. supervisely/app/widgets/random_splits_table/random_splits_table.py +2 -0
  14. supervisely/app/widgets/select_collection/__init__.py +0 -0
  15. supervisely/app/widgets/select_collection/select_collection.py +693 -0
  16. supervisely/app/widgets/select_collection/template.html +3 -0
  17. supervisely/app/widgets/train_val_splits/train_val_splits.py +111 -13
  18. supervisely/nn/training/gui/gui.py +28 -1
  19. supervisely/nn/training/gui/train_val_splits_selector.py +133 -30
  20. supervisely/nn/training/train_app.py +44 -16
  21. supervisely/project/pointcloud_episode_project.py +16 -0
  22. supervisely/project/pointcloud_project.py +16 -0
  23. supervisely/project/project.py +57 -0
  24. supervisely/project/video_project.py +16 -0
  25. supervisely/project/volume_project.py +16 -0
  26. {supervisely-6.73.374.dist-info → supervisely-6.73.376.dist-info}/METADATA +1 -1
  27. {supervisely-6.73.374.dist-info → supervisely-6.73.376.dist-info}/RECORD +31 -28
  28. {supervisely-6.73.374.dist-info → supervisely-6.73.376.dist-info}/LICENSE +0 -0
  29. {supervisely-6.73.374.dist-info → supervisely-6.73.376.dist-info}/WHEEL +0 -0
  30. {supervisely-6.73.374.dist-info → supervisely-6.73.376.dist-info}/entry_points.txt +0 -0
  31. {supervisely-6.73.374.dist-info → supervisely-6.73.376.dist-info}/top_level.txt +0 -0
@@ -725,6 +725,22 @@ class PointcloudProject(VideoProject):
725
725
  _add_items_to_list(project, val_datasets, val_items)
726
726
  return train_items, val_items
727
727
 
728
+ @staticmethod
729
+ def get_train_val_splits_by_collections(
730
+ project_dir: str,
731
+ train_collections: List[int],
732
+ val_collections: List[int],
733
+ project_id: int,
734
+ api: Api,
735
+ ) -> None:
736
+ """
737
+ Not available for PointcloudProject class.
738
+ :raises: :class:`NotImplementedError` in all cases.
739
+ """
740
+ raise NotImplementedError(
741
+ f"Static method 'get_train_val_splits_by_collections()' is not supported for PointcloudProject class now."
742
+ )
743
+
728
744
  @staticmethod
729
745
  def download(
730
746
  api: Api,
@@ -3277,6 +3277,63 @@ class Project:
3277
3277
  _add_items_to_list(project, val_datasets, val_items)
3278
3278
  return train_items, val_items
3279
3279
 
3280
+ @staticmethod
3281
+ def get_train_val_splits_by_collections(
3282
+ project_dir: str,
3283
+ train_collections: List[int],
3284
+ val_collections: List[int],
3285
+ project_id: int,
3286
+ api: Api,
3287
+ ) -> Tuple[List[ItemInfo], List[ItemInfo]]:
3288
+ """
3289
+ Get train and val items information from project by given train and val collections IDs.
3290
+
3291
+ :param project_dir: Path to project directory.
3292
+ :type project_dir: :class:`str`
3293
+ :param train_collections: List of train collections IDs.
3294
+ :type train_collections: :class:`list` [ :class:`int` ]
3295
+ :param val_collections: List of val collections IDs.
3296
+ :type val_collections: :class:`list` [ :class:`int` ]
3297
+ :param project_id: Project ID.
3298
+ :type project_id: :class:`int`
3299
+ :param api: Supervisely API address and token.
3300
+ :type api: :class:`Api<supervisely.api.api.Api>`
3301
+ :raises: :class:`KeyError` if collection ID not found in project
3302
+ :return: Tuple with lists of train items information and val items information
3303
+ :rtype: :class:`list` [ :class:`ItemInfo<ItemInfo>` ], :class:`list` [ :class:`ItemInfo<ItemInfo>` ]
3304
+ """
3305
+ from supervisely.api.entities_collection_api import CollectionTypeFilter
3306
+
3307
+ project = Project(project_dir, OpenMode.READ)
3308
+
3309
+ ds_id_to_name = {}
3310
+ for parents, ds_info in api.dataset.tree(project_id):
3311
+ full_name = "/".join(parents + [ds_info.name])
3312
+ ds_id_to_name[ds_info.id] = full_name
3313
+
3314
+ train_items = []
3315
+ val_items = []
3316
+
3317
+ for collection_ids, items_dict in [
3318
+ (train_collections, train_items),
3319
+ (val_collections, val_items),
3320
+ ]:
3321
+ for collection_id in collection_ids:
3322
+ collection_items = api.entities_collection.get_items(
3323
+ collection_id=collection_id,
3324
+ project_id=project_id,
3325
+ collection_type=CollectionTypeFilter.DEFAULT,
3326
+ )
3327
+ for item in collection_items:
3328
+ ds_name = ds_id_to_name.get(item.dataset_id)
3329
+ ds = project.datasets.get(ds_name)
3330
+ img_path, ann_path = ds.get_item_paths(item.name)
3331
+ info = ItemInfo(ds_name, item.name, img_path, ann_path)
3332
+ items_dict.append(info)
3333
+
3334
+ return train_items, val_items
3335
+
3336
+
3280
3337
  @staticmethod
3281
3338
  def download(
3282
3339
  api: Api,
@@ -1036,6 +1036,22 @@ class VideoProject(Project):
1036
1036
  raise NotImplementedError(
1037
1037
  f"Static method 'get_train_val_splits_by_tag()' is not supported for VideoProject class now."
1038
1038
  )
1039
+
1040
+ @staticmethod
1041
+ def get_train_val_splits_by_collections(
1042
+ project_dir: str,
1043
+ train_collections: List[int],
1044
+ val_collections: List[int],
1045
+ project_id: int,
1046
+ api: Api,
1047
+ ) -> None:
1048
+ """
1049
+ Not available for VideoProject class.
1050
+ :raises: :class:`NotImplementedError` in all cases.
1051
+ """
1052
+ raise NotImplementedError(
1053
+ f"Static method 'get_train_val_splits_by_collections()' is not supported for VideoProject class now."
1054
+ )
1039
1055
 
1040
1056
  @classmethod
1041
1057
  def read_single(cls, dir):
@@ -300,6 +300,22 @@ class VolumeProject(VideoProject):
300
300
  f"Static method 'get_train_val_splits_by_tag()' is not supported for VolumeProject class now."
301
301
  )
302
302
 
303
+ @staticmethod
304
+ def get_train_val_splits_by_collections(
305
+ project_dir: str,
306
+ train_collections: List[int],
307
+ val_collections: List[int],
308
+ project_id: int,
309
+ api: Api,
310
+ ) -> None:
311
+ """
312
+ Not available for VolumeProject class.
313
+ :raises: :class:`NotImplementedError` in all cases.
314
+ """
315
+ raise NotImplementedError(
316
+ f"Static method 'get_train_val_splits_by_collections()' is not supported for VolumeProject class now."
317
+ )
318
+
303
319
  @staticmethod
304
320
  async def download_async(*args, **kwargs):
305
321
  raise NotImplementedError(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: supervisely
3
- Version: 6.73.374
3
+ Version: 6.73.376
4
4
  Summary: Supervisely Python SDK.
5
5
  Home-page: https://github.com/supervisely/supervisely
6
6
  Author: Supervisely
@@ -56,7 +56,7 @@ supervisely/api/entity_annotation/object_api.py,sha256=gbcNvN_KY6G80Me8fHKQgryc2
56
56
  supervisely/api/entity_annotation/tag_api.py,sha256=h19YsJzJLDp0VIicQzoYCRyVhY149KY7pUysb4XX0RI,11114
57
57
  supervisely/api/nn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
58
  supervisely/api/nn/deploy_api.py,sha256=fA5yk3-Q66BL821iu68HpsGWWO2qHXCcWTmrXoHE4gE,37008
59
- supervisely/api/nn/neural_network_api.py,sha256=dVETXQzMpmrLe3S5-jUx5Hw-rAjX8wdS_2f3XbQa3ic,10648
59
+ supervisely/api/nn/neural_network_api.py,sha256=VYqpHb6xqCeEUofTNfOGUhvjI_5Di3T26qwVp5Z-0hE,10643
60
60
  supervisely/api/pointcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
61
  supervisely/api/pointcloud/pointcloud_annotation_api.py,sha256=xIXqCu0rKYsGt5ezh2EFT2utwsVrr2Xo-MOWUCnbvXc,11259
62
62
  supervisely/api/pointcloud/pointcloud_api.py,sha256=Gii6INYqo5f3EUCkI14VMi2XuaxbRHEaqSb_HHmJJTA,53497
@@ -115,12 +115,12 @@ supervisely/app/v1/widgets/grid_gallery.py,sha256=hEMC0MNfZ4xG2N118Mou_hptLhrikg
115
115
  supervisely/app/v1/widgets/predictions_dynamics_gallery.py,sha256=l6Ee8-c14yeSnlu4qFsLbmZ5Su63zacO3wmdtH86TMM,8079
116
116
  supervisely/app/v1/widgets/progress_bar.py,sha256=8gvQbAUHXPU8_JgC0JZkEBSRCccvg2l4Gtg8DeBCgC8,3184
117
117
  supervisely/app/v1/widgets/single_image_gallery.py,sha256=fyuC4jfCHC5rNL1JrHJCE8NaneH0nv0k-0iVkOnY0Wc,2958
118
- supervisely/app/widgets/__init__.py,sha256=N0AF1FEVlhVxDVoJ9CxR7sdKzz7l9VGYyimY3DkyMfY,10181
118
+ supervisely/app/widgets/__init__.py,sha256=nk4rXFHrtPWw6VsqFG92sC_xkFYSQ3aCwYt885IN210,10270
119
119
  supervisely/app/widgets/select_sly_utils.py,sha256=gBenYkJyCl3Fa4u2GI6BKXul-AqnzvGK32Y6hxXKccA,288
120
120
  supervisely/app/widgets/widget.py,sha256=e9tyZj7XhqDWiN5Wwk2xScXOmf__vRCoHflpGtv1RS0,9820
121
121
  supervisely/app/widgets/agent_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
- supervisely/app/widgets/agent_selector/agent_selector.py,sha256=NTtMn4d4c0ysMKn6J9OeJm2Wog-9JkreRya-rrUc1_U,1790
123
- supervisely/app/widgets/agent_selector/template.html,sha256=_n6y0WEekHuASRsKt9MhfY_UH0ivzacTlqhQvE2i85k,850
122
+ supervisely/app/widgets/agent_selector/agent_selector.py,sha256=Tjn3TKP0xLbEZLkeKhZ63T-2sXlpbLoaHMUjomH4YXY,2038
123
+ supervisely/app/widgets/agent_selector/template.html,sha256=QuImSt9aElZG-D3m6Qmn4sDHEj84rNZHCdQaxICay4w,938
124
124
  supervisely/app/widgets/apexchart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
125
  supervisely/app/widgets/apexchart/apexchart.py,sha256=8UFwDpLTC99GRw87FuaHkMVjef2QHIOI7826sw8TGJc,7377
126
126
  supervisely/app/widgets/apexchart/template.html,sha256=u-4oiCH6xJcJQqaQCky_e2nulSqwE_8h2CzgyiF4_fw,794
@@ -137,13 +137,13 @@ supervisely/app/widgets/bokeh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
137
137
  supervisely/app/widgets/bokeh/bokeh.py,sha256=ta1LtmfzJNs0D62Zx30SwDMtmdrRumzotkRiVbBKeWk,13636
138
138
  supervisely/app/widgets/bokeh/template.html,sha256=ntsh7xx4q9OHG62sa_r3INDxsXgvdPFIWTtYaWn_0t8,12
139
139
  supervisely/app/widgets/button/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
- supervisely/app/widgets/button/button.py,sha256=ddAXJqnotoeqgbmi_ewNE9jQqxjdu-NFdqpSsYu8a4Q,10561
140
+ supervisely/app/widgets/button/button.py,sha256=iLIfSn-56CO7-ZCLvgkXl-3PBT97c1tX_fE16tmcMiM,11445
141
141
  supervisely/app/widgets/button/style.css,sha256=ya4kKrQGwVhVtBydftudgjPpDdN3rcUvKSlrY-2h1Kw,93
142
- supervisely/app/widgets/button/template.html,sha256=CUT6WJJN9WyX7PIAslQApLwH4GmVpQHfMj0-8tZwLOY,913
142
+ supervisely/app/widgets/button/template.html,sha256=toRxOgPmlEyemgYtIFwOyNDA33vW65FjyyAmmrfsKsI,928
143
143
  supervisely/app/widgets/card/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
- supervisely/app/widgets/card/card.py,sha256=xmkTHxqx6k-G9DOSewCrnMKbpcj07KmzSwSO7Ue61Ok,6117
144
+ supervisely/app/widgets/card/card.py,sha256=Ah-YHMhgbfsZXS5TflITJQNNpJeSHbP7U3SrzcLbLyc,6260
145
145
  supervisely/app/widgets/card/style.css,sha256=SSLN3HTYGBt_7MzUsXrtfGo0ylGMaOdDITDfjn-v8sk,51
146
- supervisely/app/widgets/card/template.html,sha256=B25DBz_iRKq9p0qgUx6t0Ep1ytNNvLiVLVeFrNRP4GE,577
146
+ supervisely/app/widgets/card/template.html,sha256=SfwwJUTiHoeNMNiw0OSLqEiRD26zhifSJA44AXDt1aw,598
147
147
  supervisely/app/widgets/carousel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
148
  supervisely/app/widgets/carousel/carousel.py,sha256=r3f6oY5ueg2519zSDmNJwY96Iiosu084aa0P_qIO9yk,9747
149
149
  supervisely/app/widgets/carousel/template.html,sha256=sABDgglRUsYvxw4r0A4qY2e_S5ivgu5cgUuqtS2eu0o,879
@@ -182,7 +182,7 @@ supervisely/app/widgets/classes_mapping_preview/classes_mapping_preview.py,sha25
182
182
  supervisely/app/widgets/classes_mapping_preview/style.css,sha256=i5UkUvCDBwIu_vLCEePNLpUk6_UYpHdNPu6mK5DSWpQ,128
183
183
  supervisely/app/widgets/classes_mapping_preview/template.html,sha256=a0blGgpVI32PLwwyVkzu1DhZPyDQtxCVm0193MBZoOg,1028
184
184
  supervisely/app/widgets/classes_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
- supervisely/app/widgets/classes_table/classes_table.py,sha256=yjosUFCt1eELj6ripF24pt2svVsQZxQrGdXf8StS_lE,20646
185
+ supervisely/app/widgets/classes_table/classes_table.py,sha256=FjSLuHjzXJdT_Vhb6rqDVtgPRtsAB-5owrB4f5YVbXc,20704
186
186
  supervisely/app/widgets/classes_table/style.css,sha256=-BOLDIEiMXRRrz2GVKUG58Zj3wfpaBSEr43yZlSZr2w,493
187
187
  supervisely/app/widgets/classes_table/template.html,sha256=VvaQTEA_YKRbKguxw4N2ik0SR-6zfO_RQ0ICR5wasK8,2362
188
188
  supervisely/app/widgets/classic_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -259,10 +259,10 @@ supervisely/app/widgets/experiment_selector/experiment_selector.py,sha256=MButdi
259
259
  supervisely/app/widgets/experiment_selector/style.css,sha256=-zPPXHnJvatYj_xVVAb7T8uoSsUTyhm5xCKWkkFQ78E,548
260
260
  supervisely/app/widgets/experiment_selector/template.html,sha256=k7f_Xl6nDUXXwu6IY_RblYni5TbZRRxCBduY5O_SyFs,2908
261
261
  supervisely/app/widgets/fast_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
262
- supervisely/app/widgets/fast_table/fast_table.py,sha256=hLdb-9Vj18RbOWYGFcm3hGIXzBzTuvNDDTP7bQRGtFs,35321
263
- supervisely/app/widgets/fast_table/script.js,sha256=U3lmOucE_IJBuW0n6he1y3um6Ge3vFyhC6gKdmfKxOo,8782
262
+ supervisely/app/widgets/fast_table/fast_table.py,sha256=7VLdcf0kySg7_cQwBCOjSFEPUBuru_0_zQ6oAbZ7fSE,36024
263
+ supervisely/app/widgets/fast_table/script.js,sha256=3XnKAYsGyVIvOGyxxW6djCr2-7tYYK84oWKUZ999W2I,8878
264
264
  supervisely/app/widgets/fast_table/style.css,sha256=nr3wUB_n9sjQy_A8D85OIxhC6qX9LcEFaCNljzP6DGQ,15409
265
- supervisely/app/widgets/fast_table/template.html,sha256=P4mkLysZywc5F_jWuRMzYi89juudGm-6Dh7mo5SsDLo,1060
265
+ supervisely/app/widgets/fast_table/template.html,sha256=cUNS1UIEHbzqhj52uTUWH9RG3fKJTag1DTevYMN4GcA,1116
266
266
  supervisely/app/widgets/field/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
267
  supervisely/app/widgets/field/field.py,sha256=FqBqfIEcUK7R3va30YS_zijWTUSD5QT3-kpLKJNPq7o,6258
268
268
  supervisely/app/widgets/field/style.css,sha256=sLMbqxS4EDPykcQZNMXeYdR4v1y1OP6iqcX0tRz7C68,56
@@ -414,7 +414,7 @@ supervisely/app/widgets/radio_tabs/radio_tabs.py,sha256=FekXYGQ3cxEsk8zvBTi31hJ3
414
414
  supervisely/app/widgets/radio_tabs/style.css,sha256=tqyv-Du8ZBYO6kr9lsAiEJPMxjKwM6526yBC4dXwv9s,759
415
415
  supervisely/app/widgets/radio_tabs/template.html,sha256=f5Yu7uLZJaZuOQ7S31-Nrp8-ilXbgPXQQLs4uBFCdjQ,969
416
416
  supervisely/app/widgets/random_splits_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
417
- supervisely/app/widgets/random_splits_table/random_splits_table.py,sha256=GKjJL6pF7eTPYaGNCWByQBQ6fLHillSLml_2-VxPtxM,3419
417
+ supervisely/app/widgets/random_splits_table/random_splits_table.py,sha256=lU_55tAjfCvTr1B4rkza4bqMw8i0-cOPeS-W8rnX2S8,3479
418
418
  supervisely/app/widgets/random_splits_table/template.html,sha256=whTSGXDjWMtMGJyh9dZKqsROwKI6UAicUuUxzuHobSQ,2075
419
419
  supervisely/app/widgets/rate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
420
  supervisely/app/widgets/rate/rate.py,sha256=Ib6-NyOacAEyUOD0Xbpl3p0tbljGhFS4kXh7quxrGDM,5811
@@ -438,6 +438,9 @@ supervisely/app/widgets/select/template.html,sha256=s5ZpmWkYf3JOVyBEgWPAIMbQzTK6
438
438
  supervisely/app/widgets/select_app_session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
439
  supervisely/app/widgets/select_app_session/select_app_session.py,sha256=yRuYiYakd7kqG3cX3MeKYWxxhMWGFeiyJUBW7KoDmpQ,2159
440
440
  supervisely/app/widgets/select_app_session/template.html,sha256=PGr5YL7Ts3ALO9ZQkuYNnRhP7eyYq54sf7Y9EhDbuvE,959
441
+ supervisely/app/widgets/select_collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
+ supervisely/app/widgets/select_collection/select_collection.py,sha256=8ZhOgAUl_uAEoA9zzo-QV9LMmHyjNcJlMfvJLNdvuls,27249
443
+ supervisely/app/widgets/select_collection/template.html,sha256=_uvKCMP0nkpSl3FiTUxqy10JZw3q8-9hXCv22W3BDF0,38
441
444
  supervisely/app/widgets/select_cuda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
445
  supervisely/app/widgets/select_cuda/select_cuda.py,sha256=TVZrLUtOskEf6VMVim_cbJIikBPTT-PNSTvKlzVnBw4,6119
443
446
  supervisely/app/widgets/select_cuda/template.html,sha256=_uvKCMP0nkpSl3FiTUxqy10JZw3q8-9hXCv22W3BDF0,38
@@ -529,7 +532,7 @@ supervisely/app/widgets/tooltip/template.html,sha256=URvTvAnHKWYIA35kI0n9mCII-Pz
529
532
  supervisely/app/widgets/tooltip/tooltip.py,sha256=xr88KshNwelVRHydfJ5GjF_7xfA3HruJvoTV74QeEZo,4818
530
533
  supervisely/app/widgets/train_val_splits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
531
534
  supervisely/app/widgets/train_val_splits/template.html,sha256=_uvKCMP0nkpSl3FiTUxqy10JZw3q8-9hXCv22W3BDF0,38
532
- supervisely/app/widgets/train_val_splits/train_val_splits.py,sha256=D0TAALhrzxCkSugBroD4smRLRLgjSql_tLI_YWTj77E,15747
535
+ supervisely/app/widgets/train_val_splits/train_val_splits.py,sha256=KN7sW_IWs8UJO8JeLS_bS6L7NU1Qrqc7_fLBa6cettg,20493
533
536
  supervisely/app/widgets/transfer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
534
537
  supervisely/app/widgets/transfer/template.html,sha256=w9T5TrityCeHUBPPyzRBBSm48zeuGPxh5HwAZsS0buM,851
535
538
  supervisely/app/widgets/transfer/transfer.py,sha256=tZ6HhRH11xOrEhz3TAH0Redw3NE2GFSDHuHCmKBSY_s,19986
@@ -994,15 +997,15 @@ supervisely/nn/tracking/__init__.py,sha256=Ld1ed7ZZQZPkhX-5Xr-UbHZx5zLCm2-tInHnP
994
997
  supervisely/nn/tracking/boxmot.py,sha256=H9cQjYGL9nX_TLrfKDChhljTIiE9lffcgbwWCf_4PJU,4277
995
998
  supervisely/nn/tracking/tracking.py,sha256=WNrNm02B1pspA3d_AmzSJ-54RZTqWV2NZiC7FHe88bo,857
996
999
  supervisely/nn/training/__init__.py,sha256=gY4PCykJ-42MWKsqb9kl-skemKa8yB6t_fb5kzqR66U,111
997
- supervisely/nn/training/train_app.py,sha256=-NbFxj0MMPGJ8ysQcIxYd3j7oKutEcOYL9-9oO-bCiU,116587
1000
+ supervisely/nn/training/train_app.py,sha256=A-L0KufMdq4-eRa1u5xB-jMyYdyDSIFZUKCOaK_hYB8,117843
998
1001
  supervisely/nn/training/gui/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
999
1002
  supervisely/nn/training/gui/classes_selector.py,sha256=Bpp-RFDQqcZ0kLJmS6ZnExkdscWwRusvF4vbWjEsKlQ,3926
1000
- supervisely/nn/training/gui/gui.py,sha256=Z68uMPNkOyb70rpxfVDfJuGSzcoOhrqqDog8PABF2JQ,43312
1003
+ supervisely/nn/training/gui/gui.py,sha256=FbKsd4Tur1YsUwQmoHhFdkP6IZILbprXbOliD9jrEyQ,44882
1001
1004
  supervisely/nn/training/gui/hyperparameters_selector.py,sha256=5dUCYAx4E0HBLguj2B_s2nWeGGCWzv6vJeT0XvDJO3M,7746
1002
1005
  supervisely/nn/training/gui/input_selector.py,sha256=rmirJzpdxuYONI6y5_cvMdGWBJ--T20YTsISghATHu4,2510
1003
1006
  supervisely/nn/training/gui/model_selector.py,sha256=I6KRKyylpwUEC3CApEnzDKkWe5xqju0Az3D0Eg32Jdc,5352
1004
1007
  supervisely/nn/training/gui/tags_selector.py,sha256=ZirVXm5NNuIDjXO3wuHDnpYTWgFVLn-W7voBudh5bP0,3772
1005
- supervisely/nn/training/gui/train_val_splits_selector.py,sha256=V8aMe0l-CaoHxP0y6GeCBGDMd7L3epQ3KqeFsMY43rs,11191
1008
+ supervisely/nn/training/gui/train_val_splits_selector.py,sha256=bNyQ2jnaQ-eA7ux6wWqMP6k6It20lmjziZPfMI7cGlo,16306
1006
1009
  supervisely/nn/training/gui/training_artifacts.py,sha256=c0GH70ZByvnL413KWHjSKcSX8V5DStXM5sjFVZafSZo,10519
1007
1010
  supervisely/nn/training/gui/training_logs.py,sha256=GgEQMj9p98Z3p2b_-3BkHOhY7WQYELxctsRKmkbg3JY,4966
1008
1011
  supervisely/nn/training/gui/training_process.py,sha256=2F65cuu5ypKWkdaO4uVpNLMkwXjM8dpprd7Km5aedds,3192
@@ -1033,16 +1036,16 @@ supervisely/pointcloud_episodes/pointcloud_episodes.py,sha256=trjCTqJEfHMnsk_HmY
1033
1036
  supervisely/project/__init__.py,sha256=hlzdj9Pgy53Q3qdP8LMtGTChvZHQuuShdtui2eRUQeE,2601
1034
1037
  supervisely/project/data_version.py,sha256=P5Lui6i64pYeJWmAdGJDv8GRXxjfpSSZ8zT_MxIrynE,19553
1035
1038
  supervisely/project/download.py,sha256=yCFpRum_q8fbY_z2mcRAhYAcYFcDc215ldioO3Gzg3Q,28680
1036
- supervisely/project/pointcloud_episode_project.py,sha256=sgXIh8ctQVtLfjnRHOZf6ySMUfRi4nqT9xlkGYgAy9o,41868
1037
- supervisely/project/pointcloud_project.py,sha256=hb_kdTyGIK4uqTYOAUoi6OONd580AJuSku2pMDjaJXE,49402
1038
- supervisely/project/project.py,sha256=nJqyU7vTEIwaVQBmCia93BhaC_e9TuBxDMkTkMXOo54,237999
1039
+ supervisely/project/pointcloud_episode_project.py,sha256=CTG1bJXJFUA2O7yUWZg8SBjYv7ZyqhsV5flHtXdjkrA,42403
1040
+ supervisely/project/pointcloud_project.py,sha256=zRM5S7GpbEN9SkvoydRv9rdc8sFaCPE0g1Mz44iDnV0,49923
1041
+ supervisely/project/project.py,sha256=bK_TWDLHmTSoxFEUqzSk-FJzddpb0BqsQfQzzwaZu-Y,240401
1039
1042
  supervisely/project/project_meta.py,sha256=UTQPstRmRJvbtCcQ1noCtzcw3Sd4llwRMHes-Sz-JQg,51429
1040
1043
  supervisely/project/project_settings.py,sha256=NLThzU_DCynOK6hkHhVdFyezwprn9UqlnrLDe_3qhkY,9347
1041
1044
  supervisely/project/project_type.py,sha256=7mQ7zg6r7Bm2oFn5aR8n_PeLqMmOaPZd6ph7Z8ZISTw,608
1042
1045
  supervisely/project/readme_template.md,sha256=SFAfNF_uxSBJJ45A8qZ0MRuHnwSE4Gu_Z7UJqPMgRzg,9254
1043
1046
  supervisely/project/upload.py,sha256=ys95MXFh-rtq-EAsNsiRi3wgbFUCEsY2un3_bd5hJkE,3753
1044
- supervisely/project/video_project.py,sha256=DxQbUaxMlO3x5z8f8EQZ-ys7ndbq7zdm4Gu9T5xXKeU,65800
1045
- supervisely/project/volume_project.py,sha256=LJF9cdgsI4b1hR_x3A3PfhEuPLNFnoN73a_yMvZPKKQ,22669
1047
+ supervisely/project/video_project.py,sha256=7i8__1zoU2Uryicjfa2_7p3JLnSPTv14ctLJPQGgnPY,66315
1048
+ supervisely/project/volume_project.py,sha256=ZSq5lSGk9ujMaMjtghNK-zVf_25f2JA40-xemzIZwe0,23182
1046
1049
  supervisely/pyscripts_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1047
1050
  supervisely/pyscripts_utils/utils.py,sha256=scEwHJvHRQa8NHIOn2eTwH6-Zc8CGdLoxM-WzH9jcRo,314
1048
1051
  supervisely/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1097,9 +1100,9 @@ supervisely/worker_proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
1097
1100
  supervisely/worker_proto/worker_api_pb2.py,sha256=VQfi5JRBHs2pFCK1snec3JECgGnua3Xjqw_-b3aFxuM,59142
1098
1101
  supervisely/worker_proto/worker_api_pb2_grpc.py,sha256=3BwQXOaP9qpdi0Dt9EKG--Lm8KGN0C5AgmUfRv77_Jk,28940
1099
1102
  supervisely_lib/__init__.py,sha256=7-3QnN8Zf0wj8NCr2oJmqoQWMKKPKTECvjH9pd2S5vY,159
1100
- supervisely-6.73.374.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1101
- supervisely-6.73.374.dist-info/METADATA,sha256=CZQRzlek6lQZ0EeIc-BYmKKPqE-p-nVIGMMm7eh4Aws,35154
1102
- supervisely-6.73.374.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
1103
- supervisely-6.73.374.dist-info/entry_points.txt,sha256=U96-5Hxrp2ApRjnCoUiUhWMqijqh8zLR03sEhWtAcms,102
1104
- supervisely-6.73.374.dist-info/top_level.txt,sha256=kcFVwb7SXtfqZifrZaSE3owHExX4gcNYe7Q2uoby084,28
1105
- supervisely-6.73.374.dist-info/RECORD,,
1103
+ supervisely-6.73.376.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1104
+ supervisely-6.73.376.dist-info/METADATA,sha256=snAPM3paMF3bm1RBxA6aFdod4pc-A8s3GOtQ_wog5SU,35154
1105
+ supervisely-6.73.376.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
1106
+ supervisely-6.73.376.dist-info/entry_points.txt,sha256=U96-5Hxrp2ApRjnCoUiUhWMqijqh8zLR03sEhWtAcms,102
1107
+ supervisely-6.73.376.dist-info/top_level.txt,sha256=kcFVwb7SXtfqZifrZaSE3owHExX4gcNYe7Q2uoby084,28
1108
+ supervisely-6.73.376.dist-info/RECORD,,