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
Is There Any Documentation Of How To Unhide A Project On Clearml? I Have A Hidden Project That Really Should Not Be

Is there any documentation of how to unhide a project on clearml? I have a hidden project that really should not be

  
  
Posted 19 days ago
Votes Newest

Answers 3


Woot woot 🎊

  
  
Posted 16 days ago

Hi @<1547028031053238272:profile|MassiveGoldfish6>
hmm yeah you need to remove the "hidden" system_tag from the project

from clearml.backend_api.session.client import APIClient

c = APIClient()

print(c.projects.get_by_id("PROJECT_ID_HERE").to_dict())

c.projects.update(project="PROJECT_ID_HERE", system_tags=["test"])

print(c.projects.get_by_id("PROJECT_ID_HERE").to_dict())

Notice you can get the project ID from the URL
/projects/1974af8ccdac454b836c47349c4e826e/experiments/845ba08b08154e1794829b92a7136746/execution?
here the 1974af8ccdac454b836c47349c4e826e is the project id

  
  
Posted 19 days ago

Thank you so much, it worked :D

  
  
Posted 16 days ago
76 Views
3 Answers
19 days ago
16 days ago
Tags