Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi, I Just Updated Clearml To Version V1.1.3. Right After Launching A Training Pipeline, The System Crashed Due To The Following Error:

Hi, I just updated clearml to version v1.1.3. Right after launching a training pipeline, the system crashed due to the following error:
Traceback (most recent call last): File "/home/user/.clearml/venvs-builds.2/3.9/task_repository/myproject.git/step_split_dataset.py", line 61, in <module> results = step_split_dataset(**kwargs) File "/home/user/.clearml/venvs-builds.2/3.9/task_repository/myproject.git/step_split_dataset.py", line 25, in step_split_dataset source_dataset_clearml = Dataset.get(dataset_id=source_dataset_id) File "/home/user/.clearml/venvs-builds.2/3.9/lib/python3.9/site-packages/clearml/datasets/dataset.py", line 917, in get tasks = Task.get_tasks( File "/home/user/.clearml/venvs-builds.2/3.9/lib/python3.9/site-packages/clearml/task.py", line 847, in get_tasks return cls.__get_tasks(task_ids=task_ids, project_name=project_name, tags=tags, TypeError: clearml.task.Task.__get_tasks() got multiple values for keyword argument 'tags'Could this be due to a bug in the new version? As I mentioned, it didn't happen before, and I haven't changed anything in the code

  
  
Posted 2 years ago
Votes Newest

Answers 9


👍

  
  
Posted 2 years ago

Hi TimelyPenguin76
No errors with this new version!

  
  
Posted 2 years ago

Yes, let me check

  
  
Posted 2 years ago

GiganticTurtle0 can you try with 1.1.4rc0 version? pip install clearml==1.1.4rc0

  
  
Posted 2 years ago

Great, thank you very much TimelyPenguin76

  
  
Posted 2 years ago

Thanks GiganticTurtle0 , I was able to reproduce it, a fix will be out shortly, will keep you update about it in this thread

  
  
Posted 2 years ago

👍

  
  
Posted 2 years ago

Sure, here is a trivial example:
from clearml import Dataset dataset = Dataset.create(dataset_name="Dataset_v1.1.3", dataset_project="Mocks") dataset.finalize() loaded_dataset = Dataset.get(dataset_id=dataset.id)

  
  
Posted 2 years ago

Hi GiganticTurtle0 ,

Can you send a small example how can I reproduce this issue?

  
  
Posted 2 years ago
649 Views
9 Answers
2 years ago
one year ago
Tags