mirror of
https://github.com/clearml/clearml
synced 2025-05-29 17:48:33 +00:00
Fix API definitions
This commit is contained in:
parent
efde6e4135
commit
f04c39fb30
@ -962,13 +962,16 @@ class DebugImagesResponseTaskMetrics(NonStrictDataModel):
|
|||||||
self._property_iterations = value
|
self._property_iterations = value
|
||||||
|
|
||||||
|
|
||||||
class DebugImagesResponse(NonStrictDataModel):
|
class DebugImagesResponse(Response):
|
||||||
"""
|
"""
|
||||||
:param scroll_id: Scroll ID for getting more results
|
:param scroll_id: Scroll ID for getting more results
|
||||||
:type scroll_id: str
|
:type scroll_id: str
|
||||||
:param metrics: Debug image events grouped by tasks and iterations
|
:param metrics: Debug image events grouped by tasks and iterations
|
||||||
:type metrics: Sequence[DebugImagesResponseTaskMetrics]
|
:type metrics: Sequence[DebugImagesResponseTaskMetrics]
|
||||||
"""
|
"""
|
||||||
|
_service = "events"
|
||||||
|
_action = "debug_images"
|
||||||
|
_version = "2.20"
|
||||||
|
|
||||||
_schema = {
|
_schema = {
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -1093,13 +1096,16 @@ class PlotsResponseTaskMetrics(NonStrictDataModel):
|
|||||||
self._property_iterations = value
|
self._property_iterations = value
|
||||||
|
|
||||||
|
|
||||||
class PlotsResponse(NonStrictDataModel):
|
class PlotsResponse(Response):
|
||||||
"""
|
"""
|
||||||
:param scroll_id: Scroll ID for getting more results
|
:param scroll_id: Scroll ID for getting more results
|
||||||
:type scroll_id: str
|
:type scroll_id: str
|
||||||
:param metrics: Plot events grouped by tasks and iterations
|
:param metrics: Plot events grouped by tasks and iterations
|
||||||
:type metrics: Sequence[PlotsResponseTaskMetrics]
|
:type metrics: Sequence[PlotsResponseTaskMetrics]
|
||||||
"""
|
"""
|
||||||
|
_service = "events"
|
||||||
|
_action = "plots"
|
||||||
|
_version = "2.20"
|
||||||
|
|
||||||
_schema = {
|
_schema = {
|
||||||
"properties": {
|
"properties": {
|
||||||
|
Loading…
Reference in New Issue
Block a user