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
From What I Understand Clearml Should Be Auto Logging My Model, How Ever This Isn'T Happening. I Have Clear Ml Installed Via Docker On A Local Server, And Am Using Jupyter Lab On A Separate Local Server. Some Things Get Logged, Including Console Text, But

From what I understand ClearML should be auto logging my model, how ever this isn't happening. I have clear ml installed via docker on a local server, and am using Jupyter lab on a separate local server. Some things get logged, including console text, but never anything model related. I've also attempted task.connect(model) but this does nothing. This is just a simple nn.Model for seeing how ClearML works.

  
  
Posted one year ago
Votes Newest

Answers 6


Hi RoundMole15 , what version of clearml are you using? Also how is the model being saved without ClearML?

  
  
Posted one year ago

from clearml import OutputModel, Task
task = Task.init(project_name='ClearML test', task_name='test 1')

  
  
Posted one year ago

also attempted: model = task.connect(model)

  
  
Posted one year ago

version 1.7.0-232 I think

  
  
Posted one year ago

the models tab has nothing

  
  
Posted one year ago

Did you check in the "models" tab of the experiment? I see mine there.
Although I have a different problem. The MODEL URL is only the local path of the model file when it was build. ClearML does not automatically upload that file, so I don't know how to download the model file. CostlyOstrich36 do you have any suggesstion?

  
  
Posted one year ago
605 Views
6 Answers
one year ago
one year ago
Tags