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
TeenyHedgehog42
Moderator
3 Questions, 5 Answers
  Active since 19 May 2023
  Last activity 10 months ago

Reputation

0

Badges 1

5 × Eureka!
0 Votes
3 Answers
517 Views
0 Votes 3 Answers 517 Views
Hi guys, I'm running a task with argparse to change the configuration. It's fine when I ran it on local machine, but when I triggered the job on the web UI, ...
10 months ago
0 Votes
6 Answers
655 Views
0 Votes 6 Answers 655 Views
Hi guys. I tried to run my task on a remote machine via docker by using the web UI and clearml-agent But everytime the cv2 was loaded, it was crashed ImportE...
11 months ago
0 Votes
2 Answers
551 Views
0 Votes 2 Answers 551 Views
Hi guys, I'm looking for where the docker images that clearml pull from the docker hub (when create worker) is stored on my remote machine but have no ideas ...
11 months ago
0 Hi Guys, I'M Running A Task With
  • The version of my clearml-agent was installed a month ago.
  • My code is something like this
from clearml import Task
import os
import argparse 

def eval_sdk_clearml(branch_name, commit_id, benchmark_script_name):
 # Stuff here
    pass


if __name__ == "__main__":
    parser = argparse.ArgumentParser("ClearML SDK Benchmarking!")
    parser.add_argument(
        "--branch_name",
        default="staging",
        help="Branch",
    )

    parser.add_argument(
        "--commit_id",...
10 months ago
0 Hi Guys. I Tried To Run My Task On A Remote Machine Via Docker By Using The Web Ui And

Yeah, sorry for late replying. I solved my case also by uninstalling the opencv-python and installing opencv-python-headless as we stated above.

11 months ago
0 Hi Guys. I Tried To Run My Task On A Remote Machine Via Docker By Using The Web Ui And

Oh, I haven't tried this yet.
Thanks for the answer bro 👍
I'll try this.

11 months ago
0 Hi Guys. I Tried To Run My Task On A Remote Machine Via Docker By Using The Web Ui And

It works like a piece of cake.
Thank you so much for the solution @<1570220844972511232:profile|ObnoxiousBluewhale25>
🙏

11 months ago