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

Reputation

0

Badges 1

7 × Eureka!
0 Votes
5 Answers
594 Views
0 Votes 5 Answers 594 Views
Hi, I'm using clearml-agent to run a Docker container on my remote machine. While I can successfully spin up the Docker container using a ClearML task, the e...
7 months ago
0 Votes
5 Answers
810 Views
0 Votes 5 Answers 810 Views
8 months ago
0 Votes
3 Answers
727 Views
0 Votes 3 Answers 727 Views
7 months ago
0 Hi, I'M Using

@<1523701070390366208:profile|CostlyOstrich36> any idea what could be going wrong here?
OR do you have any example of this type of setup?

7 months ago
0 Hi, I'M Using

no, my server is on aws and agent is local

7 months ago
0 Hi, I'M Using

my code to init task:

task.set_base_docker(
    docker_image="clearml",
    docker_arguments=(
        "-d "
        f"-v {PWD}data:/home/data "
        f"-v {PWD}.passwd-s3fs:/home/.passwd-s3fs "
        f"-v {PWD}.logger_credentials:/home/.logger_credentials "
        "-v /home/$USER/.ssh/:/root/.ssh/ "
        "--rm "
        "--net=host "
        "--privileged "
        "--gpus all "
    )
)

task.set_script(
    entry_point="scripts/evaluate.py"
)
7 months ago
0 Hi Everyone, I Want To Use Clearml Agent On My Remote Machine, Where I'Ve Setup My Codebase, Along With Cred Files, Dataset Dir, Dockerfile And Docker Run Script. Now I Want To Run Experiments Using Agent. How Can I Make My Agent Use These, Instead Of Clo

Thanks for this, but somehow didn't seem to work. What I did instead was to have a docker image added to my agent and mounted my data/cred directories through the setup code while using --docker for clearml-agent daemon.
The outstanding issue is, I'm unable to run a file by default after starting a container. I'm using the "New Experiment" pop-up window in clearml dashboard to start an experiment. But that only sets up my container with correct mounting, but doesn't run the script that I ...

8 months ago