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 2 months ago
Votes Newest

Answers 5


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

  
  
Posted one month ago

no, my server is on aws and agent is local

  
  
Posted one month ago

CostlyOstrich36 any idea what could be going wrong here?
OR do you have any example of this type of setup?

  
  
Posted one month ago

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 2 months ago

Hi BewilderedDove91 , please provide a full log of the execution

  
  
Posted one month ago
207 Views
5 Answers
2 months ago
one month ago
Tags
Similar posts