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
Unanswered
Hi Clearml People, I Am Trying To Figure Out If Plotly Animations Are Supported? I Can See That I Can Report An Animation Figure And Get The Play/Stop Buttons But It Seem To Be Static


SuccessfulKoala55
` import plotly.express as px
df = px.data.gapminder()
fig = px.scatter(df, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country",
size="pop", color="continent", hover_name="country",
log_x=True, size_max=55, range_x=[100, 100000], range_y=[25, 90])

task.get_logger().report_plotly(title="TEST", series="sepal", iteration=0, figure=fig) `Thanks

  
  
Posted 3 years ago
100 Views
0 Answers
3 years ago
one year ago