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
Can Anyone Help Me Understand When The Content Shown In The Ui Is Set/Updated? In Particular, If I Initialize A Task And The Ui Receives Updates For Things Like The Notebook Preview, How Can I Update That Notebook Preview? I Can Imagine Manually Updating

Can anyone help me understand when the content shown in the UI is set/updated? In particular, if I initialize a task and the UI receives updates for things like the notebook preview, how can I update that notebook preview? I can imagine manually updating the artifact for the notebook by simply calling update_artifact, but the notebook preview is trickier. I can, again, imagine using some notebook conversion tool to do this manually, but since it's already built-in to ClearML, it feels like there should be a way to trigger the artifact/notebook preview update.

  
  
Posted 2 months ago
Votes Newest

Answers 3


Hi @<1836213542399774720:profile|ConvincingDragonfly85> , from my understanding as long as you run Task.init() at the start, running any cell afterwards should update the backend

  
  
Posted 2 months ago

I see! So resuming a task with Task.get_task and then task.mark_running (or whatever) is different than using a task initiated in the current context? Those two behave different in this respect? If I work on a notebook for a day and want to pick it up the next day, is it more sensible to just init a new task?

  
  
Posted 2 months ago

And thank you so much for responding! You've been very consistently helpful with my questions as I learn the platform! :)

  
  
Posted 2 months ago
357 Views
3 Answers
2 months ago
2 months ago
Tags