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 Folks! I Am Creating A Pipeline Using Decorators. The First Step Of The Pipeline Is Downloading And Processing The Dataset. Inside The Step Function, There Is A Clearml Import: From Clearml Import Dataset. However, For Some Reason In The Created Envir

Hi folks!

I am creating a pipeline using decorators. The first step of the pipeline is downloading and processing the dataset.
Inside the step function, there is a clearml import: from clearml import Dataset.
However, for some reason in the created environment inside the docker container clearml is missing.
In the INSTALLED PACKAGES stage description, I observe two sections - Original PIP and PIP.

In the Original PIP section, the clearml dependency is presented:
Original PIP:
Python 3.11.9 | packaged by conda-forge | (main, Apr 19 2024, 18:36:13) [GCC 12.3.0]
boto3 == 1.33.13
clearml == 1.15.1

And there is no clearml in the PIP clearml section and when I run the stage I get an error ModuleNotFoundError: No module named 'clearml'.

It seems that the dependencies from Original PIP and PIP are not merged, but only the PIP section is used, which for some reason does not contain the clearml dependency.

I've already tried these settings:

  • sdk.development.detect_with_pip_freeze
  • force_repo_requirements_txt

Could you please suggest what I can try to solve the issue?

  
  
Posted 2 months ago
Votes Newest

Answers


Hi GlamorousDog61 ,

Can you update clearml ( pip install -U clearml ) to the latest version?
Are you using add_function_step to add steps to the pipeline controller? if so, did you specify the packages with the packages parameter?

  
  
Posted 2 months ago