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
Profile picture
ExuberantLion50
Moderator
4 Questions, 5 Answers
  Active since 30 September 2023
  Last activity 12 days ago

Reputation

0

Badges 1

5 × Eureka!
0 Votes
6 Answers
241 Views
0 Votes 6 Answers 241 Views
4 months ago
0 Votes
5 Answers
511 Views
0 Votes 5 Answers 511 Views
Hey everyone! First post here. My issue is the python_binary I set in the .conf file doesn't seem to get used by the task I'm running. The task's output conf...
7 months ago
0 Votes
3 Answers
134 Views
0 Votes 3 Answers 134 Views
Hi community, I am trying to run a Pipeline that has only a single step defined as a Task, but I get a bizarre error when I run pipeline.start_locally(run_pi...
2 months ago
0 Votes
3 Answers
77 Views
0 Votes 3 Answers 77 Views
12 days ago
0 Hi Community, I Am Trying To Run A Pipeline That Has Only A Single Step Defined As A Task, But I Get A Bizarre Error When I Run

OK we found the source of the error @<1523701070390366208:profile|CostlyOstrich36> :

It's quite strange. Apparently, using the string "ON" as a key in the PipelineController's config, and connecting it via

pipeline.connect_configuration(config)

results in that key being processed as a boolean. so for example if we define

config = {
"ON": False,
"param1": True,
...
}

we end with that config defined inside the pipeline object like so

{
True: False,
"param1": True,...
2 months ago
0 Hey Everyone! First Post Here. My Issue Is The Python_Binary I Set In The .Conf File Doesn'T Seem To Get Used By The Task I'M Running. The Task'S Output Confirms

@<1523701070390366208:profile|CostlyOstrich36> I will try using a full path. hmm, any reason i'm not running in docker mode.... I suppose because I'm new to the platform and don't know how yet? Do you recommend that I make the switch?

7 months ago
0 Hello Community, I’M Trying To Containerize A Task Using Clearml-Agent Build, Following Instructions From The Docs Online. The Task Runs To Completion And Gives A Local Path To The Committee Container, But There’S No Image Or Container Created That I Ca

yes, specifically i'm following this: None

I'm getting lot of bizarre errors running without a docker image attached (still haven't gotten through all the issues in docker but i'm getting a lot further). For example, running the exact same pipeline in docker mode completes the first step fine but without docker i'm getting this:
virtualenv: error: argument dest: the destination . is not write-able at /hom...

12 days ago
0 Hi Community, I Am Trying To Run A Pipeline That Has Only A Single Step Defined As A Task, But I Get A Bizarre Error When I Run

Here's the full traceback

  File "/Users/davidg/Projects/buzz/bumlo/buzz_ml/training_pipeline.py", line 85, in <module>
    pipe.start_locally(run_pipeline_steps_locally=True)
  File "/Users/davidg/opt/anaconda3/envs/bumlo/lib/python3.10/site-packages/clearml/automation/controller.py", line 985, in start_locally
    self._start(wait=True)
  File "/Users/davidg/opt/anaconda3/envs/bumlo/lib/python3.10/site-packages/clearml/automation/controller.py", line 1590, in _start
    self._prepare_...
2 months ago