Skip to content

Commit

Permalink
Edit docstrings (#1325)
Browse files Browse the repository at this point in the history
  • Loading branch information
pollfly authored Sep 15, 2024
1 parent 1d012de commit f53326f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clearml/backend_interface/task/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ def update_output_model(
If no `output_uri` was specified, the default files-server will be used to store the model file/s.
:param model_path: A local weights file or folder to be uploaded.
If remote URI is provided (e.g. http:// or s3: // etc) then the URI is stored as is, without any upload
If remote URI is provided (e.g. ``http://`` or ``s3://`` etc) then the URI is stored as is, without any upload
:param name: The updated model name.
If not provided, the name is the model weights file filename without the extension.
:param comment: The updated model description. (Optional)
Expand Down Expand Up @@ -1923,7 +1923,7 @@ def get_output_log_web_page(self):
Return the Task results & outputs web page address.
For example: https://demoapp.demo.clear.ml/projects/216431/experiments/60763e04/output/log
:return: http/s URL link.
:return: ``http/s`` URL link.
"""
return self.get_task_output_log_web_page(
task_id=self.id,
Expand Down Expand Up @@ -2800,7 +2800,7 @@ def get_task_output_log_web_page(cls, task_id, project_id=None, app_server_host=
:param str project_id: Project ID for this task.
:param str app_server_host: ClearML Application server host name.
If not provided, the current session will be used to resolve the host name.
:return: http/s URL link.
:return: ``http/s`` URL link.
"""
if not app_server_host:
if not hasattr(cls, "__cached_app_server_host"):
Expand Down

0 comments on commit f53326f

Please sign in to comment.