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
Profile picture
OutrageousGiraffe8
Moderator
3 Questions, 7 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
7 Answers
577 Views
0 Votes 7 Answers 577 Views
2 years ago
0 Votes
8 Answers
571 Views
0 Votes 8 Answers 571 Views
one year ago
0 Votes
0 Answers
540 Views
0 Votes 0 Answers 540 Views
Just saying hi from ECCV expo in Israel, Tel Aviv, so many awesome people at ClearML desk!
one year ago
0 Hi, When I Save Model Using Tf.Keras.Save_Model Or Using Modelcheckpoint Model Is Not Saved As An Artifact. Output Uri Is Set To Google Cloud Bucket. When Reporting With Logger Everything Is Stored Correctly. Do You Maybe Have Any Idea Why This Would Not

I found out that if I work with one model than that model is saved but if I work with different model that model is not saved, everything else being the same. Both models use Functional API

Edit: I have further pinpointed a problem to a ReLU layer. If i use
layers.ReLU()it does not work, but if I use
layers.Activation("relu")it works.

2 years ago
0 Hi, When I Save Model Using Tf.Keras.Save_Model Or Using Modelcheckpoint Model Is Not Saved As An Artifact. Output Uri Is Set To Google Cloud Bucket. When Reporting With Logger Everything Is Stored Correctly. Do You Maybe Have Any Idea Why This Would Not

I'm sorry for late response. You could probably replicate it by instead of using activation="relu" you used new ReLU layer after Dense. Or if this does not do, extract part of the model in separate Sequential model, for example
Sequential([ Dense(128), BatchNormalization(), ReLU(), ])

2 years ago
0 Hi Everybody. I Have Problem When Logging Model In A Specific Case. If Model Has Parameter That Is A Dict Than It Is Not Saved To Clearml Even Tho It Is Saved In A Model Folder Normally. I Have Also Attached Example When This Is Happening As A Snippet. D

There is no explicit error. When I call tf.keras.models.save_model(model, model_path) model is saved to the clearml as an output model when b is not a dictionary. But if b is dict than model is not saved, and is not in artifacts under output models

I will try to log model manually, thank you for the info. But still saving keras model should result in clearml artifact according to documentation, so I believe this might be a bug.

one year ago
0 Hi Everybody. I Have Problem When Logging Model In A Specific Case. If Model Has Parameter That Is A Dict Than It Is Not Saved To Clearml Even Tho It Is Saved In A Model Folder Normally. I Have Also Attached Example When This Is Happening As A Snippet. D

i just run it and it saved it, I did nothing more then what was provided in the code. Only difference is in those two lines with comments, one works one does not.

# outputs = TestLayer(a=1, b=2)(inputs) # model uploads properly outputs = TestLayer(a=1, b={"b": 2})(inputs) # model does not uploadI just uncommented first line and commented second line

one year ago
0 Hi Everybody. I Have Problem When Logging Model In A Specific Case. If Model Has Parameter That Is A Dict Than It Is Not Saved To Clearml Even Tho It Is Saved In A Model Folder Normally. I Have Also Attached Example When This Is Happening As A Snippet. D

I will not be able to do it untill at least tomorrow but rest of the code is quite simple.. It is essentially this;

` task = Task.init(...)
task.output_uri = gs://<artifact_location>

model = build_model_test(None)
tf.keras.models.save_model(model, "/tmp/model")
`
I use both latest stable versions of clearml and tensorflow

one year ago