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, In The Clearml Web Ui, Is It Possible To Edit The Description Of A Project For Which The Description Was Initially Empty? When There Is A Description There Is An "Edit" Button On The Overview Tab. When There Is No Description There Is No "Edit" Button

Hi, in the clearml web ui, is it possible to edit the description of a project for which the description was initially empty? When there is a description there is an "edit" button on the overview tab. When there is no description there is no "edit" button visible.

  
  
Posted 2 years ago
Votes Newest

Answers 4


I see this indeed when I create a new project with an empty description. Is this also possible for older project created before clearml 1.0? For these projects this button is not there

  
  
Posted 2 years ago

GreasyPenguin14 When the project description is empty you get a "Add project overview" instead if the "Edit" button:

  
  
Posted 2 years ago

Thanks !

  
  
Posted 2 years ago

GreasyPenguin14 That's an annoying bug indeed - Thanks for spotting it. If you need to circumvent it before a fix comes out in one of the near releases, you can programatically use the https://clear.ml/docs/latest/docs/references/api/endpoints#post-projectsupdate e.g.
from clearml.backend_api.session.client import APIClient client = APIClient() client.projects.update(project='<project ID>', description='My new description')
Note you can get your project's ID either from the webapp URL, or using the projects.get_all API.

  
  
Posted 2 years ago
516 Views
4 Answers
2 years ago
one year ago
Tags
Similar posts