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
Hi All, How Do I Add Additional Data To An Experiment After The Program Is Done? E.G. I Want To Add Some More Charts To The Results Tab For An Experiment That Have Some Report Results Generated By A Separate Process

Hi all, how do I add additional data to an experiment after the program is done? e.g. I want to add some more charts to the results tab for an experiment that have some report results generated by a separate process

  
  
Posted 3 years ago
Votes Newest

Answers 10


It sounds like it exactly, yes! 😂

  
  
Posted 3 years ago

No worries 🙂
Is this what you were looking for ?

  
  
Posted 3 years ago

You're not missing anything, I'm just super novice at trains 🙂 thank you

  
  
Posted 3 years ago

if you have an automation process, then you should have the Task object, no?
then you have task.id
What am I missing here?

  
  
Posted 3 years ago

task = Task.get_task(project_name='project', task_name='best_model_ever')

  
  
Posted 3 years ago

This is an entirely automated process, I'm just getting familiar with the APIs here, so one process needs to write the task id to a file and the next needs to read it--I am looking through the docs on how to obtain the task id

  
  
Posted 3 years ago

Now I need to figure out how to export that task id

You can always look it up 🙂
How come you do not have it?

  
  
Posted 3 years ago

Okay, I was hoping it would be something easy like that! Now I need to figure out how to export that task id

  
  
Posted 3 years ago

Hi BroadMole98
A bit hacky but doable 🙂
task = Task.get_task(task_id='aabbcc') task.get_logger().report_scalar(...)

  
  
Posted 3 years ago
510 Views
10 Answers
3 years ago
one year ago
Tags