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 Just Started Evaluating Clearml. Ran The "Examples\Optimization\Hyper-Parameter-Optimization\Base_Template_Keras_Simple.Py" Script Without Any Issues. But When Running The "Examples\Automation\Manual_Random_Param_Search_Example.Py" I Came Up With Tw

Hi, I just started evaluating ClearML. Ran the "examples\optimization\hyper-parameter-optimization\base_template_keras_simple.py" script without any issues.
BUT when running the "examples\automation\manual_random_param_search_example.py" I came up with two issues:
(solved) the script queues to the "default" queue, and the ClearML hosting doesnt have such a queue. solved by changing the code to use the "services" queue (this is my issue) - the workers picked up my tasks and ran them, but failed. the output seems to be realted to cp -r : cp: -r not specified; omitting directory '/root/trains.conf' Running task 'd38587548a1c458387f414d70da7a1d2' 2021-01-11 15:29:55 trains_agent: ERROR: Could not open configuration file: /root/trains.confhttps://demoapp.demo.clear.ml/projects/0fc1d73e83f04151a07335563f3cbe6a/experiments/d38587548a1c458387f414d70da7a1d2/info-output/log?columns=selected&columns=type&columns=name&columns=tags&columns=status&columns=project.name&columns=users&columns=started&columns=last_update&columns=last_iteration&columns=parent.name&order=last_update
how to fix this error?

  
  
Posted 4 years ago
Votes Newest

Answers


Hi ExasperatedCat38 ,
Welcome 🙂
From the link you sent, it seems you're using the demo server, not the ClearML Free Hosting ( https://app.community.clear.ml ).
The demo server does have a default queue (you can see it https://demoapp.demo.clear.ml/workers-and-queues/queues ), but it's possible you've stumbled upon the weekly reset which clears all data (and at which time everything is recycled, including the queues).
The services queue is used by the services agent which runs locally on the server machine and is not configured to run training tasks like the one you tried running - I suggest you simply create a new queue, and set up your own ClearML Agent to use it and execute your experiments on an appropriate machine.

  
  
Posted 4 years ago