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
I'M Publishing The Model Artifact After The Tensorflow Model Is Saved. But In The Ui, The Download Button Is Grayed Out. And Get_Local_Copy() Doesn'T Seem To Work Either, Help Would Be Appreciated.

I'm publishing the model artifact after the tensorflow model is saved. But in the UI, the download button is grayed out. And get_local_copy() doesn't seem to work either, help would be appreciated.

  
  
Posted 2 years ago
Votes Newest

Answers 15


tensorflow model.save, it says the model locally in saved model format.

  
  
Posted 2 years ago

How are you saving the model?

  
  
Posted 2 years ago

In your ~/clearml.conf you can specify the following to force the model to upload with the following setting:
sdk.development.default_output_uri

  
  
Posted 2 years ago

The server is on a different machine. I'm experimenting on the same machine though.

  
  
Posted 2 years ago

Since I want to save the model to the clearml server? What should the port be alongside the url?

And in that case, if I do, model.save('test'), it will also save the model to the clearml server?

  
  
Posted 2 years ago

For anyone facing a similar issue to mine and wanting the model to uploaded just like data is uploaded,

in the Task.init, set the output_uri = True.

This basically makes it use the default file server for clearml that you define in the clearml.conf file. Ty.

  
  
Posted 2 years ago

The tags I add here aren't added.

  
  
Posted 2 years ago

Can you access the model in the UI and see the uri there?

  
  
Posted 2 years ago

Thank you, I found the solution to my issue, when I started reading at default output uri.

  
  
Posted 2 years ago

Basically saving a model on the client machine and publishing it, then trying to download it from the server.

  
  
Posted 2 years ago

After the previous code, I got the model uploaded by the previous code using its ID. Now when I add tags here, they were visible in the UI

  
  
Posted 2 years ago

CostlyOstrich36 I'm observing some weird behavior. Before when I added tags to the model before publishing it, it worked fine and I could see the tags in the UI.

Now when I do it this way, tags aren't set. If I then run another code which gets the model, using ID, and then set tags, it worked fine. Let me share the codes.

  
  
Posted 2 years ago

VexedCat68 , it looks like it is being saved locally. Are you running all from the same machine?

  
  
Posted 2 years ago

I basically go to the model from the experiment first, then when in the model, I'm trying to download it but can't. I've screenshotted the situation.

  
  
Posted 2 years ago

Basically want the model to be uploaded to the server alongside the experiment results.

  
  
Posted 2 years ago
732 Views
15 Answers
2 years ago
one year ago
Tags