mirror of
https://github.com/clearml/clearml
synced 2025-04-30 19:15:24 +00:00
Bump version and clarify docs
This commit is contained in:
parent
e467c05fb4
commit
80ef359f45
@ -1886,7 +1886,8 @@ class Dataset(object):
|
|||||||
Query list of dataset in the system
|
Query list of dataset in the system
|
||||||
|
|
||||||
:param dataset_project: Specify dataset project name
|
:param dataset_project: Specify dataset project name
|
||||||
:param partial_name: Specify partial match to a dataset name
|
:param partial_name: Specify partial match to a dataset name. This method supports regular expressions for name
|
||||||
|
matching (if you wish to match special characters and avoid any regex behaviour, use re.escape())
|
||||||
:param tags: Specify user tags
|
:param tags: Specify user tags
|
||||||
:param ids: List specific dataset based on IDs list
|
:param ids: List specific dataset based on IDs list
|
||||||
:param only_completed: If False, return datasets that are still in progress (uploading/edited etc.)
|
:param only_completed: If False, return datasets that are still in progress (uploading/edited etc.)
|
||||||
|
@ -971,7 +971,8 @@ class Task(_Task):
|
|||||||
Use a list of strings for multiple optional project names.
|
Use a list of strings for multiple optional project names.
|
||||||
:param str task_name: The full name or partial name of the Tasks to match within the specified
|
:param str task_name: The full name or partial name of the Tasks to match within the specified
|
||||||
``project_name`` (or all projects if ``project_name`` is ``None``).
|
``project_name`` (or all projects if ``project_name`` is ``None``).
|
||||||
This method supports regular expressions for name matching. (Optional)
|
This method supports regular expressions for name matching (if you wish to match special characters and
|
||||||
|
avoid any regex behaviour, use re.escape()). (Optional)
|
||||||
To match an exact task name (i.e. not partial matching),
|
To match an exact task name (i.e. not partial matching),
|
||||||
add ^/$ at the beginning/end of the string, for example: "^exact_task_name_here$"
|
add ^/$ at the beginning/end of the string, for example: "^exact_task_name_here$"
|
||||||
:param list tags: Filter based on the requested list of tags (strings) (Task must have all the listed tags)
|
:param list tags: Filter based on the requested list of tags (strings) (Task must have all the listed tags)
|
||||||
@ -1020,7 +1021,8 @@ class Task(_Task):
|
|||||||
Use a list of strings for multiple optional project names.
|
Use a list of strings for multiple optional project names.
|
||||||
:param str task_name: The full name or partial name of the Tasks to match within the specified
|
:param str task_name: The full name or partial name of the Tasks to match within the specified
|
||||||
``project_name`` (or all projects if ``project_name`` is ``None``).
|
``project_name`` (or all projects if ``project_name`` is ``None``).
|
||||||
This method supports regular expressions for name matching. (Optional)
|
This method supports regular expressions for name matching (if you wish to match special characters and
|
||||||
|
avoid any regex behaviour, use re.escape()). (Optional)
|
||||||
:param str project_name: project name (str) the task belongs to (use None for all projects)
|
:param str project_name: project name (str) the task belongs to (use None for all projects)
|
||||||
:param str task_name: task name (str) within the selected project
|
:param str task_name: task name (str) within the selected project
|
||||||
Return any partial match of task_name, regular expressions matching is also supported.
|
Return any partial match of task_name, regular expressions matching is also supported.
|
||||||
|
@ -1 +1 @@
|
|||||||
__version__ = '1.12.0'
|
__version__ = '1.12.1'
|
||||||
|
Loading…
Reference in New Issue
Block a user