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
Hey! Is There Way To Get Latest/Best Checkpoint From Another Task (I Know Task Id)? I Know How To Get Data From Artifacts:

Hey! Is there way to get latest/best checkpoint from another task (I know task ID)?

I know how to get data from artifacts:
prev_task: Task = Task.get_task(task_id=<prev_task_id_here>) model = prev_task.artifacts['model'].get()but I don't know how to get data from Models sections ( task.update_output_model )

  
  
Posted one year ago
Votes Newest

Answers 2


hi, AgitatedDove14

Thank you!

  
  
Posted one year ago

Hi FlatOctopus65
You are almost there
prev_task: Task = Task.get_task(task_id=<prev_task_id_here>) model = prev_task.models['output'][-1] my_check_point = model.get_local_copy()

  
  
Posted one year ago
708 Views
2 Answers
one year ago
one year ago
Tags
Similar posts