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 All! Quick Question: Can Clearml-Agent

Hi all! Quick question: can clearml-agent build a docker image from a Dockerfile before using it for running a task?

  
  
Posted 11 months ago
Votes Newest

Answers 6


Build a Docker container that when launched executes a specific experiment, or a clone (copy) of that experiment.

From the docs

  
  
Posted 11 months ago

So you have two options

  • Build the container from your docker file and push it to your container registry. Notice that if you built it on the machine with the agent, that machine can use it as Tasks base cintainer
  • Use the From container as the Tasks base container and have the rest as docker startup bash script. Wdyt?
  
  
Posted 11 months ago

Either way, thanks for the support 😀

  
  
Posted 11 months ago

  • Not sure about pushing our container to a public registry. But follow-up question: how do I configure secrets (like container registry credentials) for a clearml-agent to use for a task?
  • Is it possible to do this on a task-by-task basis? I thought clearml-agent only installs pip requirements and such, is there a way to configure a setup script for my task environment?
  
  
Posted 11 months ago

From what i understand, what this does is build a container from an existing task. That's not really what i need

I'll describe my use case, maybe it makes it clearer:
I have a Dockerfile which builds an image with a bunch of system dependencies i need for training.

I want clearml-agent to use this image, but run docker build whenever necessary, this way I don't need to keep updating the base image which I want my tasks to be run with

  
  
Posted 11 months ago

Hi @<1556450111259676672:profile|PlainSeaurchin97> , I think this is what you are looking for:
None

  
  
Posted 11 months ago
516 Views
6 Answers
11 months ago
11 months ago
Tags
Similar posts