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! I'M Trying To Report

Hi! I'm trying to report plotly figure to the output model, but the api does not have this functionality yet (for Model ).

From the code of Task reporting I see that it can be done with

_reporter.report_plot

but when I call it from the OutputModel the plot does not show up in the plots section

output_model._reporter.report_plot(
            "Train", "The best plot ever", plot=chart_data.to_plotly_json(), iter=step
        )

Does anyone tried to do something like that?

  
  
Posted 5 months ago
Votes Newest

Answers 3


Hi @<1523702031007617024:profile|GrotesqueDog77> , please refer to the documentation to see all the possibilities you have with the SDK - None (Just scroll down from there)

As a side note, this is the SDK, not the API 🙂

  
  
Posted 5 months ago

Hi @<1523702031007617024:profile|GrotesqueDog77> , this is not currently supported (in any case you should not use internal objects starting with _ as these might change without notice). If this is an use case you're interested in, I suggest opening a GitHub issue with a request 🙂

  
  
Posted 5 months ago

@<1523701070390366208:profile|CostlyOstrich36> Yes SDK 🙂

I see that that is not possible, but I also see that report_histogram is there (which does reporting of the plotly)

and was wondering is there any way to report custom plotly when I have my own layeout

  
  
Posted 5 months ago