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
EnchantingOctopus35
Moderator
2 Questions, 3 Answers
  Active since 08 January 2025
  Last activity 3 months ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
4 Answers
370 Views
0 Votes 4 Answers 370 Views
Hey all, I am having an issue with ClearML that never happened before. It looks like it happens on the version clearml-1.14.4 but not in clearml-1.14.1 . Fil...
3 months ago
0 Votes
2 Answers
728 Views
0 Votes 2 Answers 728 Views
Hi everyone! I am currently using ClearML to track my Datasets. At each run I am producing some datasets that are somehow "heavy". As I want to track any dif...
7 months ago
0 Hey All, I Am Having An Issue With Clearml That Never Happened Before. It Looks Like It Happens On The Version

👋 hi @<1523701070390366208:profile|CostlyOstrich36> I am running a training pipeline of my model on a remote machine.

The way I do it, is through a cron job that triggers my API and then run a subprocess. The CLI of this subprocess launches the pipeline.

With something like


if __name__ == '__main__':
    args = parse_args(sys.argv)

    if args.is_local:
        PipelineDecorator.run_locally()

    execute_pipeline(...)

where execute_pipeline is decorated with `Pipeli...

3 months ago
0 Hey All, I Am Having An Issue With Clearml That Never Happened Before. It Looks Like It Happens On The Version

I didn't have the time yet. But here is what I found: I have a process that runs a first function in which I init a ClearML Task. Then, later in my process I run a sub process that triggers a ClearML Pipeline (execute_pipeline in my example is triggered). And then the problem happens.
If I don't run the first function that inits a ClearML Task, I don't have the issue. I think it is related to the cache of clearml ?

3 months ago
0 Hi Everyone! I Am Currently Using Clearml To Track My Datasets. At Each Run I Am Producing Some Datasets That Are Somehow "Heavy". As I Want To Track Any Diff Change Every Time, I Am Using The

Hi John, thanks for your answer. Indeed, this is what I did. It forces me to develop some custom archiving process but it sounds acceptable for the moment 👍

7 months ago