mirror of
https://github.com/clearml/clearml
synced 2025-06-26 18:16:07 +00:00
Add Task.logger property
This commit is contained in:
parent
4c77cd1479
commit
134fabb7a2
@ -720,6 +720,18 @@ class Task(_Task):
|
|||||||
"""
|
"""
|
||||||
return self.get_models()
|
return self.get_models()
|
||||||
|
|
||||||
|
@property
|
||||||
|
def logger(self):
|
||||||
|
# type: () -> Logger
|
||||||
|
"""
|
||||||
|
Get a Logger object for reporting, for this task context. You can view all Logger report output associated with
|
||||||
|
the Task for which this method is called, including metrics, plots, text, tables, and images, in the
|
||||||
|
**Trains Web-App (UI)**.
|
||||||
|
|
||||||
|
:return: The Logger object for the current Task (experiment).
|
||||||
|
"""
|
||||||
|
return self.get_logger()
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def clone(
|
def clone(
|
||||||
cls,
|
cls,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user