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
ThoughtfulPeacock83
Moderator
5 Questions, 4 Answers
  Active since 10 April 2024
  Last activity one month ago

Reputation

0

Badges 1

4 × Eureka!
0 Votes
3 Answers
104 Views
0 Votes 3 Answers 104 Views
one month ago
0 Votes
0 Answers
515 Views
0 Votes 0 Answers 515 Views
s not installing
6 months ago
0 Votes
1 Answers
464 Views
0 Votes 1 Answers 464 Views
Hi there. In a clearml pipeline step with docker, I specify the git repo and branch I want to use. How can I also specify a repos optional dependecies? It us...
7 months ago
0 Votes
3 Answers
616 Views
0 Votes 3 Answers 616 Views
6 months ago
0 Votes
1 Answers
79 Views
0 Votes 1 Answers 79 Views
hello, remote task execution is failing due to the following error, right after packages have been installed. ANy idea how to fix this? : Environment setup c...
one month ago
0 Hello! I Have A Clearml-Task That Reads Args From Command Line Using Argparse. Before This Worked Fine. Now, Args Are Show Up In The Configuration Tab Of The Experiment, But Are Not Being Passed To The Script, Printing Passed Argyments Yields An Empty Lis

also worth noting, in the configuration tab of an experiment, before this issue all other args would be shown with their default value once the script would be executed. Now, only the args explicitely passed in the command line clearml-task are shown in this tab

one month ago
0 Hello, Remote Task Execution Is Failing Due To The Following Error, Right After Packages Have Been Installed. Any Idea How To Fix This? :

this is caused by the remote instance installing clearml 1.1.1 which is incompatible with python3.11 due to the regex in the traceback. However, even when I specify to use a compatible clearml version in the requirements it installs clearml 1.1.1 anyways....

one month ago
0 Hello! I Have A Clearml-Task That Reads Args From Command Line Using Argparse. Before This Worked Fine. Now, Args Are Show Up In The Configuration Tab Of The Experiment, But Are Not Being Passed To The Script, Printing Passed Argyments Yields An Empty Lis

Im testing with the following script. It runs fine if its not part of a git repo. Placing it inside a git repo (though I am testing it in a private bitbucket in my work) and the args arent passed:

#script that just multiplies args, with one arg, x being obligatory
if __name__ == "__main__":
    import argparse

    parser = argparse.ArgumentParser()

    parser.add_argument("--x", type=float, required=True)
    parser.add_argument("--y", type=float, default = 2.)
    parser.add_argument...
one month ago
0 Hello! Is There A Way To Override The Configuration Vault Parameters Of A Pipeline Step With The Add_Function_Step Method? I See In The Docs That Add_Step Method Has The Option To Override The Vault With The Configuration_Overrides Argument, But Not Add_F

"poetry_install_extra_args". I work with a git repo that has optional package dependency groups needed for training, so I need to install the packages with "poetry install --extras training". Using poetry_install_extra_args solves the issue. However, since this is a package dependant (some dont have the training dependencies, others have other dependency group names) fix, I would rather this not be fixed in the configuration vault, but something I can set via the pipeline code.

6 months ago