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
Can I Somehow Change A Project Settings Via The Python Sdk?

Can I somehow change a project settings via the Python SDK?

  
  
Posted one year ago
Votes Newest

Answers 8


Hi UnevenDolphin73 , is there a specific setting you're looking for?

  
  
Posted one year ago

I think you can do this only through the API, if at all possible since it's a system tag. Which project do you want to edit?

  
  
Posted one year ago

I'd like to remove the hidden system tag from a project

  
  
Posted one year ago

UnevenDolphin73 i would use apiclient:
APIClient().projects.edit(project=project_id, system _tags=[])

*I might have a few typos above but that should be the gist

  
  
Posted one year ago

An internal project I've accidentally made with a hidden tag while playing around with the ClearML internal code.

  
  
Posted one year ago

I can also do this via Mongo directly, but I was hoping to skip the K8S interaction there.

  
  
Posted one year ago

Where do I import this APIClient from AgitatedDove14 ? I meanwhile edited it directly in mongo, but editing a db directly on a Friday is a big nono

  
  
Posted one year ago

from clearml.backend_api.session.client import APIClient c = APIClient() c.projects.update(project="project-id-here", system_tags=[])

  
  
Posted one year ago
574 Views
8 Answers
one year ago
one year ago
Tags