This commit is contained in:
allegroai 2022-08-05 00:19:50 +03:00
parent fcad50b626
commit 12ad0f6243
2 changed files with 18 additions and 16 deletions

View File

@ -47,7 +47,7 @@ class ApiServiceProxy(object):
# noinspection PyBroadException
try:
return importlib.import_module(name, package=package)
except Exception as ex:
except Exception:
return None

View File

@ -1429,8 +1429,7 @@ class AddRequest(CompoundRequest):
},
"metrics_plot_event": {
"description": " An entire plot (not single datapoint) and it's layout. "
"Used for plotting ROC curves, confidence matrices, "
"etc. when evaluating the net.",
"Used for plotting ROC curves, confidence matrices, etc. when evaluating the net.",
"properties": {
"iter": {"description": "Iteration", "type": "integer"},
"metric": {
@ -1439,7 +1438,8 @@ class AddRequest(CompoundRequest):
},
"plot_str": {
"description": "An entire plot (not single datapoint) and it's layout. "
"Used for plotting ROC curves, confidence matrices, etc. when evaluating the net.",
"Used for plotting ROC curves, confidence matrices, etc. "
"when evaluating the net.",
"type": "string",
},
"skip_validation": {
@ -3489,19 +3489,21 @@ class GetTaskLogRequest(Request):
},
"from_timestamp": {
"description": "Epoch time in UTC ms to use as the navigation start. Optional. If not provided, "
"reference timestamp is determined by the 'navigate_earlier' parameter (if true, reference "
" timestamp is the last timestamp and if false, reference timestamp is the first timestamp)",
"reference timestamp is determined by the 'navigate_earlier' parameter (if true, "
"reference timestamp is the last timestamp and if false, reference timestamp "
"is the first timestamp)",
"type": "number",
},
"navigate_earlier": {
"description": "If set then log events are retreived from the latest to the earliest ones "
"(in timestamp descending order, unless order='asc'). Otherwise from the earliest to the "
"latest ones (in timestamp ascending order, unless order='desc'). The default is True",
"(in timestamp descending order, unless order='asc'). Otherwise from the earliest to "
"the latest ones (in timestamp ascending order, unless order='desc'). "
"The default is True",
"type": "boolean",
},
"order": {
"description": "If set, changes the order in which log events are returned based on the value of "
"'navigate_earlier'",
"description": "If set, changes the order in which log events are returned based on the value "
"of 'navigate_earlier'",
"enum": ["asc", "desc"],
"type": "string",
},