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

Answers 5


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

no, my server is on aws and agent is local

  
  
Posted 3 months ago

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

  
  
Posted 3 months ago

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

  
  
Posted 3 months ago

Hi BewilderedDove91 , please provide a full log of the execution

  
  
Posted 3 months ago
297 Views
5 Answers
3 months ago
3 months ago
Tags
Similar posts