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 Have A Question About Migrating From Tensorflow 2.14 To 2.16. Up Until Now I Have Been Using

Hi, I have a question about migrating from tensorflow 2.14 to 2.16.
Up until now I have been using tf.keras.callbacks.ModelCheckpoint to save models in the SavedModel format (by giving the callback a directory as the filepath ), as a result ClearML would "auto-magically" upload zip files with assets and variables subdirectories and fingerprint.pb and saved_model.pb files, which is exactly what I wanted.
Now in 2.16 it turns out that keras.callbacks.ModelCheckpoint no longer supports the SavedModel format. So I wrote my own callback that uses the tf.saved_model.save function. However, ClearML now uploads only the variables (as variables.zip ) for some reason, even though I inspect the path given to tf.saved_model.save and it indeed contains all expected files and subdirectories.

Any idea how to solve this?

  
  
Posted one month ago
Votes Newest

Answers 2


Hi @<1558986867771183104:profile|ShakyKangaroo32> , what version of clearml are you using?

  
  
Posted one month ago

SDK 1.14.4
Server 1.14.1-451

  
  
Posted one month ago
149 Views
2 Answers
one month ago
one month ago
Tags