supervisely 6.73.245__py3-none-any.whl → 6.73.247__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/nn/training/gui/training_process.py +0 -4
- supervisely/nn/training/train_app.py +9 -6
- {supervisely-6.73.245.dist-info → supervisely-6.73.247.dist-info}/METADATA +1 -1
- {supervisely-6.73.245.dist-info → supervisely-6.73.247.dist-info}/RECORD +8 -8
- {supervisely-6.73.245.dist-info → supervisely-6.73.247.dist-info}/LICENSE +0 -0
- {supervisely-6.73.245.dist-info → supervisely-6.73.247.dist-info}/WHEEL +0 -0
- {supervisely-6.73.245.dist-info → supervisely-6.73.247.dist-info}/entry_points.txt +0 -0
- {supervisely-6.73.245.dist-info → supervisely-6.73.247.dist-info}/top_level.txt +0 -0
|
@@ -44,9 +44,6 @@ class TrainingProcess:
|
|
|
44
44
|
self.model_benchmark_report_thumbnail = ReportThumbnail()
|
|
45
45
|
self.model_benchmark_report_thumbnail.hide()
|
|
46
46
|
|
|
47
|
-
self.model_benchmark_report_text = Text(status="info", text="Creating report on model...")
|
|
48
|
-
self.model_benchmark_report_text.hide()
|
|
49
|
-
|
|
50
47
|
self.validator_text = Text("")
|
|
51
48
|
self.validator_text.hide()
|
|
52
49
|
self.start_button = Button("Start")
|
|
@@ -67,7 +64,6 @@ class TrainingProcess:
|
|
|
67
64
|
self.validator_text,
|
|
68
65
|
self.artifacts_thumbnail,
|
|
69
66
|
self.model_benchmark_report_thumbnail,
|
|
70
|
-
self.model_benchmark_report_text,
|
|
71
67
|
]
|
|
72
68
|
|
|
73
69
|
if self.app_options.get("device_selector", False):
|
|
@@ -1208,7 +1208,7 @@ class TrainApp:
|
|
|
1208
1208
|
# Prepare logs
|
|
1209
1209
|
if sly_fs.dir_exists(self.log_dir):
|
|
1210
1210
|
logs_dir = join(self.output_dir, "logs")
|
|
1211
|
-
shutil.
|
|
1211
|
+
shutil.copytree(self.log_dir, logs_dir)
|
|
1212
1212
|
|
|
1213
1213
|
# Generate experiment_info.json and app_state.json
|
|
1214
1214
|
def _upload_file_to_team_files(self, local_path: str, remote_path: str, message: str) -> None:
|
|
@@ -1492,7 +1492,7 @@ class TrainApp:
|
|
|
1492
1492
|
self.gui.training_process.start_button.loading = False
|
|
1493
1493
|
self.gui.training_process.start_button.disable()
|
|
1494
1494
|
self.gui.training_process.stop_button.disable()
|
|
1495
|
-
self.gui.training_logs.tensorboard_button.disable()
|
|
1495
|
+
# self.gui.training_logs.tensorboard_button.disable()
|
|
1496
1496
|
|
|
1497
1497
|
set_directory(remote_dir)
|
|
1498
1498
|
self.gui.training_process.artifacts_thumbnail.set(file_info)
|
|
@@ -1568,7 +1568,9 @@ class TrainApp:
|
|
|
1568
1568
|
remote_config_path = None
|
|
1569
1569
|
|
|
1570
1570
|
logger.info(f"Creating the report for the best model: {best_filename!r}")
|
|
1571
|
-
self.gui.training_process.
|
|
1571
|
+
self.gui.training_process.validator_text.set(
|
|
1572
|
+
f"Creating evaluation report for the best model: {best_filename!r}", "info"
|
|
1573
|
+
)
|
|
1572
1574
|
self.progress_bar_main(message="Starting Model Benchmark evaluation", total=1)
|
|
1573
1575
|
self.progress_bar_main.show()
|
|
1574
1576
|
|
|
@@ -1694,10 +1696,9 @@ class TrainApp:
|
|
|
1694
1696
|
|
|
1695
1697
|
# 8. UI updates
|
|
1696
1698
|
benchmark_report_template = self._api.file.get_info_by_path(
|
|
1697
|
-
self._team_id
|
|
1699
|
+
self._team_id, remote_dir + "template.vue"
|
|
1698
1700
|
)
|
|
1699
1701
|
|
|
1700
|
-
self.gui.training_process.model_benchmark_report_text.hide()
|
|
1701
1702
|
self.gui.training_process.model_benchmark_report_thumbnail.set(
|
|
1702
1703
|
benchmark_report_template
|
|
1703
1704
|
)
|
|
@@ -1713,7 +1714,9 @@ class TrainApp:
|
|
|
1713
1714
|
)
|
|
1714
1715
|
except Exception as e:
|
|
1715
1716
|
logger.error(f"Model benchmark failed. {repr(e)}", exc_info=True)
|
|
1716
|
-
self.gui.training_process.
|
|
1717
|
+
self.gui.training_process.validator_text.set(
|
|
1718
|
+
"Finalizing and uploading training artifacts...", "info"
|
|
1719
|
+
)
|
|
1717
1720
|
self.progress_bar_main.hide()
|
|
1718
1721
|
self.progress_bar_secondary.hide()
|
|
1719
1722
|
try:
|
|
@@ -940,7 +940,7 @@ supervisely/nn/tracker/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
940
940
|
supervisely/nn/tracker/utils/gmc.py,sha256=3JX8979H3NA-YHNaRQyj9Z-xb9qtyMittPEjGw8y2Jo,11557
|
|
941
941
|
supervisely/nn/tracker/utils/kalman_filter.py,sha256=XquwLRFVfZdJMHPqPUtq-kdtuKLY6zgGHbnPGTXL8qU,17044
|
|
942
942
|
supervisely/nn/training/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
943
|
-
supervisely/nn/training/train_app.py,sha256=
|
|
943
|
+
supervisely/nn/training/train_app.py,sha256=E4Qpr9KSEuPLAUJCVUHyt_-tpPQrPRnmpNBGCjnURyw,80464
|
|
944
944
|
supervisely/nn/training/gui/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
945
945
|
supervisely/nn/training/gui/classes_selector.py,sha256=laF29RllCsGTYFGntwqs2rwn1WHX9QwzbjhC6dUJvlE,3717
|
|
946
946
|
supervisely/nn/training/gui/gui.py,sha256=o1ryQJjzSewskgxxoFyuQ5oZUvYlzg70paxeCleRmJY,21765
|
|
@@ -949,7 +949,7 @@ supervisely/nn/training/gui/input_selector.py,sha256=ygkvgaT9iCetrsqHzCaRAGaTdcP
|
|
|
949
949
|
supervisely/nn/training/gui/model_selector.py,sha256=-XXxudFRJBIFGsVU7DWEzweS9h-T6dl13ZrHdo8673w,3449
|
|
950
950
|
supervisely/nn/training/gui/train_val_splits_selector.py,sha256=nh3nX-XTjz_8p8hAedaGdrBmb0wQFZtnWd_X07kBDuE,8461
|
|
951
951
|
supervisely/nn/training/gui/training_logs.py,sha256=hd_xE5ljV8bfbcqVeTvcbIOafAsXo0dSGIP7ZrcgSJc,3012
|
|
952
|
-
supervisely/nn/training/gui/training_process.py,sha256=
|
|
952
|
+
supervisely/nn/training/gui/training_process.py,sha256=291hH3h76uUluJ4isoJgwj_xt1fHnmFVhOAB9daJp_s,3585
|
|
953
953
|
supervisely/nn/training/gui/utils.py,sha256=Bi7-BRsAqN7fUkhd7rXVEAqsxhBdIZ2MrrJtrNqVf8I,3905
|
|
954
954
|
supervisely/nn/training/loggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
955
955
|
supervisely/nn/training/loggers/base_train_logger.py,sha256=RqnXx7PLS8Clo3jgCxrP2cqzj1ZFr9Yv7DczFKiZJII,1837
|
|
@@ -1041,9 +1041,9 @@ supervisely/worker_proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
1041
1041
|
supervisely/worker_proto/worker_api_pb2.py,sha256=VQfi5JRBHs2pFCK1snec3JECgGnua3Xjqw_-b3aFxuM,59142
|
|
1042
1042
|
supervisely/worker_proto/worker_api_pb2_grpc.py,sha256=3BwQXOaP9qpdi0Dt9EKG--Lm8KGN0C5AgmUfRv77_Jk,28940
|
|
1043
1043
|
supervisely_lib/__init__.py,sha256=7-3QnN8Zf0wj8NCr2oJmqoQWMKKPKTECvjH9pd2S5vY,159
|
|
1044
|
-
supervisely-6.73.
|
|
1045
|
-
supervisely-6.73.
|
|
1046
|
-
supervisely-6.73.
|
|
1047
|
-
supervisely-6.73.
|
|
1048
|
-
supervisely-6.73.
|
|
1049
|
-
supervisely-6.73.
|
|
1044
|
+
supervisely-6.73.247.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
1045
|
+
supervisely-6.73.247.dist-info/METADATA,sha256=O8lqgCVk_UkC_P9bHE0lXmpe25VgYyEB7CBe58bYbuA,33351
|
|
1046
|
+
supervisely-6.73.247.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
1047
|
+
supervisely-6.73.247.dist-info/entry_points.txt,sha256=U96-5Hxrp2ApRjnCoUiUhWMqijqh8zLR03sEhWtAcms,102
|
|
1048
|
+
supervisely-6.73.247.dist-info/top_level.txt,sha256=kcFVwb7SXtfqZifrZaSE3owHExX4gcNYe7Q2uoby084,28
|
|
1049
|
+
supervisely-6.73.247.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|