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
Hello Everyone! I Tried To Remove Models From Clearml Using

Hello everyone!
I tried to remove models from ClearML using

clearml.Model.remove(
model=model_id,
delete_weights_file=True,
force=True,
raise_on_errors=True,
). 

An error occurred for some models:

clearml.Model - ERROR - Action failed <400/201: models.get_by_id/v1.0 (Invalid model id (no such public or company model): id=__DELETED__63e920aeacb247c890c70e525576474c, company=18190bca60324fb488af17c7e8c0f147)> (model=__DELETED__63e920aeacb247c890c70e525576474c)
2025-01-27 19:37:56,770 - clearml.Model - ERROR - Failed reloading model __DELETED__63e920aeacb247c890c70e525576474c
Could not find model id=__DELETED__63e920aeacb247c890c70e525576474c

What is this error? How can I remove these models from s3?
image

  
  
Posted one month ago
Votes Newest

Answers 3


Hi GrievingKoala83 , the DELETED prefix in the model id means that the original model was already deleted. The reference that you see "__DELETED__63e920aeacb247c890c70e525576474c" does not point to any model but instead a reminder that there was a reference to 63e920aeacb247c890c70e525576474c model here but the model was removed

  
  
Posted one month ago

Hi GrievingKoala83 , are you using a self hosted server?

  
  
Posted one month ago

thank you!

  
  
Posted one month ago
171 Views
3 Answers
one month ago
one month ago
Tags