supervisely 6.73.243__py3-none-any.whl → 6.73.245__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of supervisely might be problematic. Click here for more details.
- supervisely/__init__.py +1 -1
- supervisely/_utils.py +18 -0
- supervisely/app/widgets/__init__.py +1 -0
- supervisely/app/widgets/card/card.py +3 -0
- supervisely/app/widgets/classes_table/classes_table.py +15 -1
- supervisely/app/widgets/custom_models_selector/custom_models_selector.py +25 -7
- supervisely/app/widgets/custom_models_selector/template.html +1 -1
- supervisely/app/widgets/experiment_selector/__init__.py +0 -0
- supervisely/app/widgets/experiment_selector/experiment_selector.py +500 -0
- supervisely/app/widgets/experiment_selector/style.css +27 -0
- supervisely/app/widgets/experiment_selector/template.html +82 -0
- supervisely/app/widgets/pretrained_models_selector/pretrained_models_selector.py +25 -3
- supervisely/app/widgets/random_splits_table/random_splits_table.py +41 -17
- supervisely/app/widgets/select_dataset_tree/select_dataset_tree.py +12 -5
- supervisely/app/widgets/train_val_splits/train_val_splits.py +99 -10
- supervisely/app/widgets/tree_select/tree_select.py +2 -0
- supervisely/nn/__init__.py +3 -1
- supervisely/nn/artifacts/artifacts.py +10 -0
- supervisely/nn/artifacts/detectron2.py +2 -0
- supervisely/nn/artifacts/hrda.py +3 -0
- supervisely/nn/artifacts/mmclassification.py +2 -0
- supervisely/nn/artifacts/mmdetection.py +6 -3
- supervisely/nn/artifacts/mmsegmentation.py +2 -0
- supervisely/nn/artifacts/ritm.py +3 -1
- supervisely/nn/artifacts/rtdetr.py +2 -0
- supervisely/nn/artifacts/unet.py +2 -0
- supervisely/nn/artifacts/yolov5.py +3 -0
- supervisely/nn/artifacts/yolov8.py +7 -1
- supervisely/nn/experiments.py +113 -0
- supervisely/nn/inference/gui/__init__.py +3 -1
- supervisely/nn/inference/gui/gui.py +31 -232
- supervisely/nn/inference/gui/serving_gui.py +223 -0
- supervisely/nn/inference/gui/serving_gui_template.py +240 -0
- supervisely/nn/inference/inference.py +225 -24
- supervisely/nn/training/__init__.py +0 -0
- supervisely/nn/training/gui/__init__.py +1 -0
- supervisely/nn/training/gui/classes_selector.py +100 -0
- supervisely/nn/training/gui/gui.py +539 -0
- supervisely/nn/training/gui/hyperparameters_selector.py +117 -0
- supervisely/nn/training/gui/input_selector.py +70 -0
- supervisely/nn/training/gui/model_selector.py +95 -0
- supervisely/nn/training/gui/train_val_splits_selector.py +200 -0
- supervisely/nn/training/gui/training_logs.py +93 -0
- supervisely/nn/training/gui/training_process.py +114 -0
- supervisely/nn/training/gui/utils.py +128 -0
- supervisely/nn/training/loggers/__init__.py +0 -0
- supervisely/nn/training/loggers/base_train_logger.py +58 -0
- supervisely/nn/training/loggers/tensorboard_logger.py +46 -0
- supervisely/nn/training/train_app.py +2038 -0
- supervisely/nn/utils.py +5 -0
- {supervisely-6.73.243.dist-info → supervisely-6.73.245.dist-info}/METADATA +3 -1
- {supervisely-6.73.243.dist-info → supervisely-6.73.245.dist-info}/RECORD +56 -34
- {supervisely-6.73.243.dist-info → supervisely-6.73.245.dist-info}/LICENSE +0 -0
- {supervisely-6.73.243.dist-info → supervisely-6.73.245.dist-info}/WHEEL +0 -0
- {supervisely-6.73.243.dist-info → supervisely-6.73.245.dist-info}/entry_points.txt +0 -0
- {supervisely-6.73.243.dist-info → supervisely-6.73.245.dist-info}/top_level.txt +0 -0
supervisely/nn/utils.py
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
from dataclasses import dataclass
|
|
2
|
+
from typing import List
|
|
3
|
+
|
|
4
|
+
from supervisely.nn.artifacts.artifacts import TrainInfo
|
|
5
|
+
from supervisely.nn.experiments import ExperimentInfo
|
|
2
6
|
|
|
3
7
|
|
|
4
8
|
class ModelSource:
|
|
@@ -28,6 +32,7 @@ class CheckpointInfo:
|
|
|
28
32
|
:param custom_checkpoint_path: Path in Team Files to the weights.
|
|
29
33
|
:param model_source: Source of the model, either "Pretrained models" or "Custom models".
|
|
30
34
|
"""
|
|
35
|
+
|
|
31
36
|
checkpoint_name: str = None
|
|
32
37
|
model_name: str = None
|
|
33
38
|
architecture: str = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: supervisely
|
|
3
|
-
Version: 6.73.
|
|
3
|
+
Version: 6.73.245
|
|
4
4
|
Summary: Supervisely Python SDK.
|
|
5
5
|
Home-page: https://github.com/supervisely/supervisely
|
|
6
6
|
Author: Supervisely
|
|
@@ -127,6 +127,8 @@ Requires-Dist: scikit-learn; extra == "tracking"
|
|
|
127
127
|
Requires-Dist: faiss-gpu; extra == "tracking"
|
|
128
128
|
Requires-Dist: tabulate; extra == "tracking"
|
|
129
129
|
Requires-Dist: tensorboard; extra == "tracking"
|
|
130
|
+
Provides-Extra: training
|
|
131
|
+
Requires-Dist: tensorboardX; extra == "training"
|
|
130
132
|
|
|
131
133
|
<h1 align="center">
|
|
132
134
|
<a href="https://supervise.ly"><img alt="Supervisely" title="Supervisely" src="https://i.imgur.com/B276eMS.png"></a>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
supervisely/README.md,sha256=XM-DiMC6To3I9RjQZ0c61905EFRR_jnCUx2q3uNR-X8,3331
|
|
2
|
-
supervisely/__init__.py,sha256=
|
|
3
|
-
supervisely/_utils.py,sha256=
|
|
2
|
+
supervisely/__init__.py,sha256=AV335r212Ln_vTroiucb5T6yFuAlMKxKzldjMbW3gA8,10800
|
|
3
|
+
supervisely/_utils.py,sha256=I4nZ0L7NS6144r-CQ2VJvLeUJZ1bCi4pYXH4Gxo3-D4,15763
|
|
4
4
|
supervisely/function_wrapper.py,sha256=R5YajTQ0GnRp2vtjwfC9hINkzQc0JiyGsu8TER373xY,1912
|
|
5
5
|
supervisely/sly_logger.py,sha256=LG1wTyyctyEKuCuKM2IKf_SMPH7BzkTsFdO-0tnorzg,6225
|
|
6
6
|
supervisely/tiny_timer.py,sha256=hkpe_7FE6bsKL79blSs7WBaktuPavEVu67IpEPrfmjE,183
|
|
@@ -110,7 +110,7 @@ supervisely/app/v1/widgets/grid_gallery.py,sha256=hEMC0MNfZ4xG2N118Mou_hptLhrikg
|
|
|
110
110
|
supervisely/app/v1/widgets/predictions_dynamics_gallery.py,sha256=l6Ee8-c14yeSnlu4qFsLbmZ5Su63zacO3wmdtH86TMM,8079
|
|
111
111
|
supervisely/app/v1/widgets/progress_bar.py,sha256=8gvQbAUHXPU8_JgC0JZkEBSRCccvg2l4Gtg8DeBCgC8,3184
|
|
112
112
|
supervisely/app/v1/widgets/single_image_gallery.py,sha256=fyuC4jfCHC5rNL1JrHJCE8NaneH0nv0k-0iVkOnY0Wc,2958
|
|
113
|
-
supervisely/app/widgets/__init__.py,sha256=
|
|
113
|
+
supervisely/app/widgets/__init__.py,sha256=4ft5Y3zM1_Uu5bbS-Jkj9PguuufYgcCx-2_RRY8tEXI,10048
|
|
114
114
|
supervisely/app/widgets/select_sly_utils.py,sha256=gBenYkJyCl3Fa4u2GI6BKXul-AqnzvGK32Y6hxXKccA,288
|
|
115
115
|
supervisely/app/widgets/widget.py,sha256=e9tyZj7XhqDWiN5Wwk2xScXOmf__vRCoHflpGtv1RS0,9820
|
|
116
116
|
supervisely/app/widgets/agent_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -133,7 +133,7 @@ supervisely/app/widgets/button/button.py,sha256=zDQinhOOjNNxdP2GIFrwTmVfGAeJJoKV
|
|
|
133
133
|
supervisely/app/widgets/button/style.css,sha256=ya4kKrQGwVhVtBydftudgjPpDdN3rcUvKSlrY-2h1Kw,93
|
|
134
134
|
supervisely/app/widgets/button/template.html,sha256=bJBknhqXsuWB2uy5lUhPzlmirwVMvSvsinOAhr6T_tc,810
|
|
135
135
|
supervisely/app/widgets/card/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
|
-
supervisely/app/widgets/card/card.py,sha256=
|
|
136
|
+
supervisely/app/widgets/card/card.py,sha256=xmkTHxqx6k-G9DOSewCrnMKbpcj07KmzSwSO7Ue61Ok,6117
|
|
137
137
|
supervisely/app/widgets/card/style.css,sha256=SSLN3HTYGBt_7MzUsXrtfGo0ylGMaOdDITDfjn-v8sk,51
|
|
138
138
|
supervisely/app/widgets/card/template.html,sha256=B25DBz_iRKq9p0qgUx6t0Ep1ytNNvLiVLVeFrNRP4GE,577
|
|
139
139
|
supervisely/app/widgets/carousel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -174,7 +174,7 @@ supervisely/app/widgets/classes_mapping_preview/classes_mapping_preview.py,sha25
|
|
|
174
174
|
supervisely/app/widgets/classes_mapping_preview/style.css,sha256=i5UkUvCDBwIu_vLCEePNLpUk6_UYpHdNPu6mK5DSWpQ,128
|
|
175
175
|
supervisely/app/widgets/classes_mapping_preview/template.html,sha256=a0blGgpVI32PLwwyVkzu1DhZPyDQtxCVm0193MBZoOg,1028
|
|
176
176
|
supervisely/app/widgets/classes_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
|
-
supervisely/app/widgets/classes_table/classes_table.py,sha256=
|
|
177
|
+
supervisely/app/widgets/classes_table/classes_table.py,sha256=yjosUFCt1eELj6ripF24pt2svVsQZxQrGdXf8StS_lE,20646
|
|
178
178
|
supervisely/app/widgets/classes_table/style.css,sha256=-BOLDIEiMXRRrz2GVKUG58Zj3wfpaBSEr43yZlSZr2w,493
|
|
179
179
|
supervisely/app/widgets/classes_table/template.html,sha256=VvaQTEA_YKRbKguxw4N2ik0SR-6zfO_RQ0ICR5wasK8,2362
|
|
180
180
|
supervisely/app/widgets/classic_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -202,9 +202,9 @@ supervisely/app/widgets/copy_to_clipboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-
|
|
|
202
202
|
supervisely/app/widgets/copy_to_clipboard/copy_to_clipboard.py,sha256=UlBbXeCBS2_60wtJrMZj3jqPhQJR0wJ3T7vfK4WA588,3283
|
|
203
203
|
supervisely/app/widgets/copy_to_clipboard/template.html,sha256=4gGPot40yVqFkpVVUZGz3DPogVFlZKQ98YM01EUfQDY,492
|
|
204
204
|
supervisely/app/widgets/custom_models_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
|
-
supervisely/app/widgets/custom_models_selector/custom_models_selector.py,sha256=
|
|
205
|
+
supervisely/app/widgets/custom_models_selector/custom_models_selector.py,sha256=yt9rmJR9cHcYorzb04g8yEu5yxrEsRxZVtmlb6-rsMU,20835
|
|
206
206
|
supervisely/app/widgets/custom_models_selector/style.css,sha256=-zPPXHnJvatYj_xVVAb7T8uoSsUTyhm5xCKWkkFQ78E,548
|
|
207
|
-
supervisely/app/widgets/custom_models_selector/template.html,sha256=
|
|
207
|
+
supervisely/app/widgets/custom_models_selector/template.html,sha256=k7f_Xl6nDUXXwu6IY_RblYni5TbZRRxCBduY5O_SyFs,2908
|
|
208
208
|
supervisely/app/widgets/dataset_thumbnail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
209
|
supervisely/app/widgets/dataset_thumbnail/dataset_thumbnail.py,sha256=f7l7Te4jPRtvBcjTuUoo_AFRjpTujJHKHNYyt5EIx3Q,4646
|
|
210
210
|
supervisely/app/widgets/dataset_thumbnail/template.html,sha256=yXlpgxkuQEklVY8iXLydKZ07vpG5RLHAmLCKb58l-ac,677
|
|
@@ -246,6 +246,10 @@ supervisely/app/widgets/element_tags_list/template.html,sha256=8M2mjS8JbIl4lp42W
|
|
|
246
246
|
supervisely/app/widgets/empty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
247
|
supervisely/app/widgets/empty/empty.py,sha256=fCr8I7CQ2XLo59bl2txjDrblOGiu0TzUcM-Pq6s7gKY,1285
|
|
248
248
|
supervisely/app/widgets/empty/template.html,sha256=aDBKkin5aLuqByzNN517-rTYCGIg5SPKgnysYMPYjv8,40
|
|
249
|
+
supervisely/app/widgets/experiment_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
250
|
+
supervisely/app/widgets/experiment_selector/experiment_selector.py,sha256=sP1kRVC-IXPuONbARA8BCkGLbk0BCEbWf83Q9-gThaA,18501
|
|
251
|
+
supervisely/app/widgets/experiment_selector/style.css,sha256=-zPPXHnJvatYj_xVVAb7T8uoSsUTyhm5xCKWkkFQ78E,548
|
|
252
|
+
supervisely/app/widgets/experiment_selector/template.html,sha256=k7f_Xl6nDUXXwu6IY_RblYni5TbZRRxCBduY5O_SyFs,2908
|
|
249
253
|
supervisely/app/widgets/fast_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
250
254
|
supervisely/app/widgets/fast_table/fast_table.py,sha256=hLdb-9Vj18RbOWYGFcm3hGIXzBzTuvNDDTP7bQRGtFs,35321
|
|
251
255
|
supervisely/app/widgets/fast_table/script.js,sha256=U3lmOucE_IJBuW0n6he1y3um6Ge3vFyhC6gKdmfKxOo,8782
|
|
@@ -379,7 +383,7 @@ supervisely/app/widgets/pagination/template.html,sha256=1z9pt2SOTjA5Kmt8YjSiyO8X
|
|
|
379
383
|
supervisely/app/widgets/pie_chart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
380
384
|
supervisely/app/widgets/pie_chart/pie_chart.py,sha256=E0erw7kPXiudJzNhWMKdOnMgK9u6yYlPw10noKoO2jw,7809
|
|
381
385
|
supervisely/app/widgets/pretrained_models_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
382
|
-
supervisely/app/widgets/pretrained_models_selector/pretrained_models_selector.py,sha256=
|
|
386
|
+
supervisely/app/widgets/pretrained_models_selector/pretrained_models_selector.py,sha256=h6R5bFa1BNCqskFKV9yMGzhY4rf1ZT3ZBh8MKfG87Ko,12394
|
|
383
387
|
supervisely/app/widgets/pretrained_models_selector/style.css,sha256=po3FssuZhg3lKFU3VcTLqTW-qTCXLDnxYi2lCtYXhBc,363
|
|
384
388
|
supervisely/app/widgets/pretrained_models_selector/template.html,sha256=4owO7X84Ii35vMioeTOwMAdR9OwlvLFe19MNPDX4kWM,5170
|
|
385
389
|
supervisely/app/widgets/project_selector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -402,7 +406,7 @@ supervisely/app/widgets/radio_tabs/radio_tabs.py,sha256=FekXYGQ3cxEsk8zvBTi31hJ3
|
|
|
402
406
|
supervisely/app/widgets/radio_tabs/style.css,sha256=tqyv-Du8ZBYO6kr9lsAiEJPMxjKwM6526yBC4dXwv9s,759
|
|
403
407
|
supervisely/app/widgets/radio_tabs/template.html,sha256=f5Yu7uLZJaZuOQ7S31-Nrp8-ilXbgPXQQLs4uBFCdjQ,969
|
|
404
408
|
supervisely/app/widgets/random_splits_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
|
-
supervisely/app/widgets/random_splits_table/random_splits_table.py,sha256=
|
|
409
|
+
supervisely/app/widgets/random_splits_table/random_splits_table.py,sha256=BPb1ZDG2Z7-6L9ZP3gOvrCyn5_q6USbxnhjRus0Usz4,2927
|
|
406
410
|
supervisely/app/widgets/random_splits_table/template.html,sha256=JD1fsr-j319Hs8kmXfObqhP5m4rcdvlQT0xv7heRxdo,2077
|
|
407
411
|
supervisely/app/widgets/rate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
412
|
supervisely/app/widgets/rate/rate.py,sha256=Ib6-NyOacAEyUOD0Xbpl3p0tbljGhFS4kXh7quxrGDM,5811
|
|
@@ -429,7 +433,7 @@ supervisely/app/widgets/select_dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
429
433
|
supervisely/app/widgets/select_dataset/select_dataset.py,sha256=2bltbJ70plGFoF8mpLxAU2huVBce8D6CsCcX9wxO5KU,9713
|
|
430
434
|
supervisely/app/widgets/select_dataset/template.html,sha256=7O_ZgmRs0vOL8tng6QvYbI_0o6A4yMAPB2MlfzWHeHQ,984
|
|
431
435
|
supervisely/app/widgets/select_dataset_tree/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
432
|
-
supervisely/app/widgets/select_dataset_tree/select_dataset_tree.py,sha256=
|
|
436
|
+
supervisely/app/widgets/select_dataset_tree/select_dataset_tree.py,sha256=Q1uuzLkX68zXaO4QIMHYNQc_Egqp2_DL8_ZprXnc3rc,22345
|
|
433
437
|
supervisely/app/widgets/select_dataset_tree/template.html,sha256=_uvKCMP0nkpSl3FiTUxqy10JZw3q8-9hXCv22W3BDF0,38
|
|
434
438
|
supervisely/app/widgets/select_item/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
435
439
|
supervisely/app/widgets/select_item/select_item.py,sha256=dcB0UN46rn3nFQybgrGpLRfwB6xnPo-GGrv9rsMeCbA,3833
|
|
@@ -513,13 +517,13 @@ supervisely/app/widgets/tooltip/template.html,sha256=URvTvAnHKWYIA35kI0n9mCII-Pz
|
|
|
513
517
|
supervisely/app/widgets/tooltip/tooltip.py,sha256=xr88KshNwelVRHydfJ5GjF_7xfA3HruJvoTV74QeEZo,4818
|
|
514
518
|
supervisely/app/widgets/train_val_splits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
515
519
|
supervisely/app/widgets/train_val_splits/template.html,sha256=_uvKCMP0nkpSl3FiTUxqy10JZw3q8-9hXCv22W3BDF0,38
|
|
516
|
-
supervisely/app/widgets/train_val_splits/train_val_splits.py,sha256=
|
|
520
|
+
supervisely/app/widgets/train_val_splits/train_val_splits.py,sha256=DkS8oBFGPNWM97VRjrrU7r2OjQIDUNi4RG7qx5yzZOE,14979
|
|
517
521
|
supervisely/app/widgets/transfer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
518
522
|
supervisely/app/widgets/transfer/template.html,sha256=w9T5TrityCeHUBPPyzRBBSm48zeuGPxh5HwAZsS0buM,851
|
|
519
523
|
supervisely/app/widgets/transfer/transfer.py,sha256=tZ6HhRH11xOrEhz3TAH0Redw3NE2GFSDHuHCmKBSY_s,19986
|
|
520
524
|
supervisely/app/widgets/tree_select/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
521
525
|
supervisely/app/widgets/tree_select/template.html,sha256=eUHN0yn_llRRozAOvdc8SjhY-KX12TcgOUXCemHWGew,613
|
|
522
|
-
supervisely/app/widgets/tree_select/tree_select.py,sha256=
|
|
526
|
+
supervisely/app/widgets/tree_select/tree_select.py,sha256=qy5JBVQ812FcyXIDPwCjt7C9N9H9gSzXwlkvO8mKqrQ,14371
|
|
523
527
|
supervisely/app/widgets/treemap_chart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
524
528
|
supervisely/app/widgets/treemap_chart/treemap_chart.py,sha256=g6wc1M30kNFA92Xj-6g2bJlnnV23ro17pJn0s4WDgvs,9298
|
|
525
529
|
supervisely/app/widgets/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -705,22 +709,23 @@ supervisely/metric/metrics_tests.py,sha256=59L-J9ihYZdX5we8z_qMPZKKUxEPGTgVJqPgJ
|
|
|
705
709
|
supervisely/metric/pixel_accuracy.py,sha256=qjtxInOTkGDwPeLUnjBdzOrVRT3V6kGGOWjBZMqMJhw,3273
|
|
706
710
|
supervisely/metric/precision_recall_metric.py,sha256=4AQCkcB84mpYQS94yJ-wkG1LBuXlQf3X_tI9f67vtR8,3426
|
|
707
711
|
supervisely/metric/projects_applier.py,sha256=ORtgLQHYtNi4KYsSGaGPPWiZPexTJF9IWqX_RuLRxPk,3415
|
|
708
|
-
supervisely/nn/__init__.py,sha256=
|
|
712
|
+
supervisely/nn/__init__.py,sha256=w2gZ6pCreaTYyhZV8PZrYctqmCu_7sbJ-WGegs7mouw,570
|
|
713
|
+
supervisely/nn/experiments.py,sha256=AVxOy1X6gdlJVZXR1o0VYdr6KIUde32YoLrKy8jfWd8,4318
|
|
709
714
|
supervisely/nn/prediction_dto.py,sha256=8QQE6h_feOf3bjWtyG_PoU8FIQrr4g8PoMOyoscmqJM,1697
|
|
710
715
|
supervisely/nn/task_type.py,sha256=UJvSJ4L3I08j_e6sU6Ptu7kS5p1H09rfhfoDUSZ2iys,522
|
|
711
|
-
supervisely/nn/utils.py,sha256
|
|
716
|
+
supervisely/nn/utils.py,sha256=-Xjv5KLu8CTtyi7acqsIX1E0dDwKZPED4D6b4Z_Ln3k,1451
|
|
712
717
|
supervisely/nn/artifacts/__init__.py,sha256=m7KYTMzEJnoV9wcU_0xzgLuPz69Dqp9va0fP32tohV4,576
|
|
713
|
-
supervisely/nn/artifacts/artifacts.py,sha256=
|
|
714
|
-
supervisely/nn/artifacts/detectron2.py,sha256=
|
|
715
|
-
supervisely/nn/artifacts/hrda.py,sha256=
|
|
716
|
-
supervisely/nn/artifacts/mmclassification.py,sha256=
|
|
717
|
-
supervisely/nn/artifacts/mmdetection.py,sha256=
|
|
718
|
-
supervisely/nn/artifacts/mmsegmentation.py,sha256=
|
|
719
|
-
supervisely/nn/artifacts/ritm.py,sha256=
|
|
720
|
-
supervisely/nn/artifacts/rtdetr.py,sha256=
|
|
721
|
-
supervisely/nn/artifacts/unet.py,sha256=
|
|
722
|
-
supervisely/nn/artifacts/yolov5.py,sha256=
|
|
723
|
-
supervisely/nn/artifacts/yolov8.py,sha256=
|
|
718
|
+
supervisely/nn/artifacts/artifacts.py,sha256=8_iB5Y3hqehCXYs0evv5jou2sqzFi7yKBfMRB3sEwXw,17246
|
|
719
|
+
supervisely/nn/artifacts/detectron2.py,sha256=2kDcf75Xkt1CrqjDTYVL_s0msJjWs0a5lhuxXimmQx0,1629
|
|
720
|
+
supervisely/nn/artifacts/hrda.py,sha256=3DzbjDIt9YuLozMrKmYYw13oxc14xju2vzbxKVq2G4I,1073
|
|
721
|
+
supervisely/nn/artifacts/mmclassification.py,sha256=n0QjyeRFYNEEyor-lpCH39YKGE-_902LBaEyd81DTYU,1477
|
|
722
|
+
supervisely/nn/artifacts/mmdetection.py,sha256=sHPkAq6heiAjLRditTN6GCl83BtQP9Yz7QXZvxHF7H4,4718
|
|
723
|
+
supervisely/nn/artifacts/mmsegmentation.py,sha256=sXJZ8jNqmWkZG9l_FShGWC_8YQt666hkozw5TbBBwFA,1283
|
|
724
|
+
supervisely/nn/artifacts/ritm.py,sha256=RVFH0L7Z7ukJjo2ZeijaHxXigv8JoH9DHQMql7bUxfg,1931
|
|
725
|
+
supervisely/nn/artifacts/rtdetr.py,sha256=qbaGbQ_7LkrBH4Je6aKNBqWWzav9poG_h4-2IK5LYWE,1188
|
|
726
|
+
supervisely/nn/artifacts/unet.py,sha256=1FUHHYKVPXrcCFbkL_sYNTr4mOKxvVodp4-wtGPNDUA,1548
|
|
727
|
+
supervisely/nn/artifacts/yolov5.py,sha256=a8TnNqLIhYY9oFIN5Gj-Payw459j_tXfYd418SF0WWc,1640
|
|
728
|
+
supervisely/nn/artifacts/yolov8.py,sha256=ZXuAyuabjAw84lmGhD3l-xvybsy3xIMdpq2W69k8jlQ,1405
|
|
724
729
|
supervisely/nn/benchmark/__init__.py,sha256=7jDezvavJFtO9mDeB2TqW8N4sD8TsHQBPpA9RESleIQ,610
|
|
725
730
|
supervisely/nn/benchmark/base_benchmark.py,sha256=8dnDPblZErN6LuoUduy7Q9XivHD-j4FXqjSJh7TqLf4,25015
|
|
726
731
|
supervisely/nn/benchmark/base_evaluator.py,sha256=fxmUDsIIAahaA8yshxMA2a8klxNAOelx_pswUWVa3-o,3644
|
|
@@ -839,11 +844,13 @@ supervisely/nn/benchmark/visualization/widgets/table/__init__.py,sha256=47DEQpj8
|
|
|
839
844
|
supervisely/nn/benchmark/visualization/widgets/table/table.py,sha256=atmDnF1Af6qLQBUjLhK18RMDKAYlxnsuVHMSEa5a-e8,4319
|
|
840
845
|
supervisely/nn/inference/__init__.py,sha256=mtEci4Puu-fRXDnGn8RP47o97rv3VTE0hjbYO34Zwqg,1622
|
|
841
846
|
supervisely/nn/inference/cache.py,sha256=KvzCgMbEBLdiJAxJDLicIPKAlYb52P9_kpNPWfiVY8Y,28194
|
|
842
|
-
supervisely/nn/inference/inference.py,sha256=
|
|
847
|
+
supervisely/nn/inference/inference.py,sha256=XndEKJJUw1nn6BMc_LfbFtnRC1pWZuTh5MZF2wtNFrY,125363
|
|
843
848
|
supervisely/nn/inference/session.py,sha256=jmkkxbe2kH-lEgUU6Afh62jP68dxfhF5v6OGDfLU62E,35757
|
|
844
849
|
supervisely/nn/inference/video_inference.py,sha256=8Bshjr6rDyLay5Za8IB8Dr6FURMO2R_v7aELasO8pR4,5746
|
|
845
|
-
supervisely/nn/inference/gui/__init__.py,sha256=
|
|
846
|
-
supervisely/nn/inference/gui/gui.py,sha256=
|
|
850
|
+
supervisely/nn/inference/gui/__init__.py,sha256=wCxd-lF5Zhcwsis-wScDA8n1Gk_1O00PKgDviUZ3F1U,221
|
|
851
|
+
supervisely/nn/inference/gui/gui.py,sha256=5xoPmBrCcIAIgh_RFe9qi488MzRRDwLgUmmGiH--q_I,20274
|
|
852
|
+
supervisely/nn/inference/gui/serving_gui.py,sha256=MCGyN-ASusn0vAug24AWEmmKF8qwvo-Pk3WQSJGX8ec,8446
|
|
853
|
+
supervisely/nn/inference/gui/serving_gui_template.py,sha256=cz1oPYxlPm4db7uECwap7ULkJl2X3wFHcKOrqyNj0ac,8671
|
|
847
854
|
supervisely/nn/inference/instance_segmentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
848
855
|
supervisely/nn/inference/instance_segmentation/instance_segmentation.py,sha256=TWasw61P4CDiWi2zWuIYJLZ9woLA5IxWtUNRn9u6qEU,2211
|
|
849
856
|
supervisely/nn/inference/instance_segmentation/dashboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -932,6 +939,21 @@ supervisely/nn/tracker/deep_sort/deep_sort/tracker.py,sha256=cz--uel4ROLHPem8dOo
|
|
|
932
939
|
supervisely/nn/tracker/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
933
940
|
supervisely/nn/tracker/utils/gmc.py,sha256=3JX8979H3NA-YHNaRQyj9Z-xb9qtyMittPEjGw8y2Jo,11557
|
|
934
941
|
supervisely/nn/tracker/utils/kalman_filter.py,sha256=XquwLRFVfZdJMHPqPUtq-kdtuKLY6zgGHbnPGTXL8qU,17044
|
|
942
|
+
supervisely/nn/training/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
943
|
+
supervisely/nn/training/train_app.py,sha256=VMq6q-0WrkGnwrR7m5_TtgfGll-TxmCdzgvq6VZw21E,80370
|
|
944
|
+
supervisely/nn/training/gui/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
945
|
+
supervisely/nn/training/gui/classes_selector.py,sha256=laF29RllCsGTYFGntwqs2rwn1WHX9QwzbjhC6dUJvlE,3717
|
|
946
|
+
supervisely/nn/training/gui/gui.py,sha256=o1ryQJjzSewskgxxoFyuQ5oZUvYlzg70paxeCleRmJY,21765
|
|
947
|
+
supervisely/nn/training/gui/hyperparameters_selector.py,sha256=kqtKTHvYVPHXDdeel0_rrQZOHUgbZ4EZjk7i3sZ2gD4,3999
|
|
948
|
+
supervisely/nn/training/gui/input_selector.py,sha256=ygkvgaT9iCetrsqHzCaRAGaTdcP328_S2QrGzPhLWxQ,2038
|
|
949
|
+
supervisely/nn/training/gui/model_selector.py,sha256=-XXxudFRJBIFGsVU7DWEzweS9h-T6dl13ZrHdo8673w,3449
|
|
950
|
+
supervisely/nn/training/gui/train_val_splits_selector.py,sha256=nh3nX-XTjz_8p8hAedaGdrBmb0wQFZtnWd_X07kBDuE,8461
|
|
951
|
+
supervisely/nn/training/gui/training_logs.py,sha256=hd_xE5ljV8bfbcqVeTvcbIOafAsXo0dSGIP7ZrcgSJc,3012
|
|
952
|
+
supervisely/nn/training/gui/training_process.py,sha256=_ZyHQdpsaOwDmTtBh4CnQ0gDQHKPBZvXG7bnkeyu8y4,3779
|
|
953
|
+
supervisely/nn/training/gui/utils.py,sha256=Bi7-BRsAqN7fUkhd7rXVEAqsxhBdIZ2MrrJtrNqVf8I,3905
|
|
954
|
+
supervisely/nn/training/loggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
955
|
+
supervisely/nn/training/loggers/base_train_logger.py,sha256=RqnXx7PLS8Clo3jgCxrP2cqzj1ZFr9Yv7DczFKiZJII,1837
|
|
956
|
+
supervisely/nn/training/loggers/tensorboard_logger.py,sha256=bGwiAOWSa604eCd1eV29QOf8HqJGATcCFonk5cuJDfY,1297
|
|
935
957
|
supervisely/output/__init__.py,sha256=OY-ZkdTkpg3qMkZa763Uk7UrRF1Q-p55qIBPo-tNPho,4585
|
|
936
958
|
supervisely/pointcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
937
959
|
supervisely/pointcloud/pointcloud.py,sha256=wWWnueObO7li5PckhRim7WxHytsm2zn1caK3zghQcfg,11036
|
|
@@ -1019,9 +1041,9 @@ supervisely/worker_proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
1019
1041
|
supervisely/worker_proto/worker_api_pb2.py,sha256=VQfi5JRBHs2pFCK1snec3JECgGnua3Xjqw_-b3aFxuM,59142
|
|
1020
1042
|
supervisely/worker_proto/worker_api_pb2_grpc.py,sha256=3BwQXOaP9qpdi0Dt9EKG--Lm8KGN0C5AgmUfRv77_Jk,28940
|
|
1021
1043
|
supervisely_lib/__init__.py,sha256=7-3QnN8Zf0wj8NCr2oJmqoQWMKKPKTECvjH9pd2S5vY,159
|
|
1022
|
-
supervisely-6.73.
|
|
1023
|
-
supervisely-6.73.
|
|
1024
|
-
supervisely-6.73.
|
|
1025
|
-
supervisely-6.73.
|
|
1026
|
-
supervisely-6.73.
|
|
1027
|
-
supervisely-6.73.
|
|
1044
|
+
supervisely-6.73.245.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
1045
|
+
supervisely-6.73.245.dist-info/METADATA,sha256=VKkyBgqP7svjgiSsFiEgD8zFnaEfcNLoAeYN8sOmsmM,33351
|
|
1046
|
+
supervisely-6.73.245.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
1047
|
+
supervisely-6.73.245.dist-info/entry_points.txt,sha256=U96-5Hxrp2ApRjnCoUiUhWMqijqh8zLR03sEhWtAcms,102
|
|
1048
|
+
supervisely-6.73.245.dist-info/top_level.txt,sha256=kcFVwb7SXtfqZifrZaSE3owHExX4gcNYe7Q2uoby084,28
|
|
1049
|
+
supervisely-6.73.245.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|