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
Answered
Hi, I'M Using

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 entry-point script path doesn't seem to execute properly.
From my console, I can see that the Docker container starts up, but no further activity occurs—it's as if the script isn't being triggered.
Could you help me troubleshoot this? Specifically:

  • How can I ensure that the entry-point script is correctly set and executed within the container?
  • Are there specific logs or configurations I should check to diagnose this issue?
  
  
Posted one day ago
Votes Newest

Answers 4


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"
)
  
  
Posted one day ago

Hi @<1785479228557365248:profile|BewilderedDove91> , please provide a full log of the execution

  
  
Posted one day ago

Are you running the agent on the same machine as the server?

  
  
Posted 19 hours ago

no, my server is on aws and agent is local

  
  
Posted 18 hours ago
13 Views
4 Answers
one day ago
13 hours ago
Tags
Similar posts