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
When I Try To Create Experiment In The Ui All I See Is This Dialogue

When I try to create experiment in the UI all I see is this dialogue

  
  
Posted one year ago
Votes Newest

Answers 16


Gotcha, and the agent default runtime mode is docker correct? So I could install all my system dependencies in my own docker image?

  
  
Posted one year ago

I guess I'm confused on venv mode vs docker mode. It seems like I'm passing in my own docker image which is then used at run time?

  
  
Posted one year ago

Wouldnt that be docker mode?

  
  
Posted one year ago

basically the idea is you do not need to configure the Experiment manually, it is created when you actually develop the code / run/debug it, or you have the CLI taking everything from your machine and populating it

  
  
Posted one year ago

BoredHedgehog47 this is basically a wizard explaining the steps, see the 3 tabs 🙂
BTW, you can launch an experiment directly from CLI with clearml-task
https://clear.ml/docs/latest/docs/apps/clearml_task

  
  
Posted one year ago

seems like I'm passing in my own docker image which is then used at run time?

You are passing the Default docker image, if the Task does not list a specific docker image it will use the one you passed.
Yes this is "docker mode" (in venv mode no dockers are used, it just creates a new venv per experiment and installs everything inside the venv)

  
  
Posted one year ago

Yep got it, I was under the impression I could set those values in the UI but I now see they are parsed from my local workstation

  
  
Posted one year ago

Ah I see now

  
  
Posted one year ago

btw: you can also configure --extra-index-url in the agent's clearml.conf

  
  
Posted one year ago

👍

  
  
Posted one year ago

How does a task specify which docker image it needs?

Either in the code itself 'task.set_base_docker' or with the CLI, or set it in the UI when you clone an experiment (everything becomes editable)

  
  
Posted one year ago

Does the clearml module parse the python packages?

Yes it analyzes the installed packages based on the actual mports you have in the code.

If I'm using a private pypi artifact server, would I set the PIP_INDEX_URL on the workers so they could retrieve those packages when that experiment is cloned and re-ran?

Correct 🙂 the agent basically calls pip install on those packages, so if you configure it, with PIP_INDEX_URL it should just work like any other pip install

  
  
Posted one year ago

How does a task specify which docker image it needs?

  
  
Posted one year ago

and the agent default runtime mode is docker correct?

Actually the default is venv mode, to run in docker mode add --docker to the command line

So I could install all my system dependencies in my own docker image?

Correct, inside the docker it will inherit all the preinstalled packages, But it will also install any missing ones (based on the Task requirements. i.e. "installed packages" section)

Also what is the purpose of the

aws

block in the clearml.conf? Where are those values used?

Access to S3 buckets / credentials (passed to the internal StorageManager artifacts uploads etc)

  
  
Posted one year ago

Also what is the purpose of the aws block in the clearml.conf? Where are those values used?

  
  
Posted one year ago

Does the clearml module parse the python packages? If I'm using a private pypi artifact server, would I set the PIP_INDEX_URL on the workers so they could retrieve those packages when that experiment is cloned and re-ran?

  
  
Posted one year ago
610 Views
16 Answers
one year ago
one year ago
Tags