From fe021e0b5776d36076e9893b19cf57b0daefa5a7 Mon Sep 17 00:00:00 2001 From: revital Date: Wed, 25 Oct 2023 11:24:22 +0300 Subject: [PATCH] edits --- clearml/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml/task.py b/clearml/task.py index 3e0a8161..41c11373 100644 --- a/clearml/task.py +++ b/clearml/task.py @@ -1061,7 +1061,7 @@ class Task(_Task): ``["__$all", "best", "experiment", "ever", "__$not", "internal", "__$not", "test"]`` The "OR" and "AND" operators apply to all tags that follow them until another operator is specified. The NOT operator applies only to the immediately following tag. - For example, ``["__$all", "a", "b", "c", "__$or", "d", "__$not", "e", "__$and", "__$or" "f", "g"]``. + For example, ``["__$all", "a", "b", "c", "__$or", "d", "__$not", "e", "__$and", "__$or" "f", "g"]`` means ("a" AND "b" AND "c" AND ("d" OR NOT "e") AND ("f" OR "g")). See https://clear.ml/docs/latest/docs/clearml_sdk/task_sdk/#tag-filters for more information. :param list additional_return_fields: Optional, if not provided return a list of Task IDs.