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
Profile picture
NonchalantWhale65
Moderator
1 Question, 6 Answers
  Active since 11 March 2025
  Last activity 5 months ago

Reputation

0

Badges 1

6 × Eureka!
0 Votes
7 Answers
458 Views
0 Votes 7 Answers 458 Views
Hi! Ever since there was a huge frontend upgrade (a few weeks ago?), we’ve been having problems with plotly 3D scatter plots for which aspectmode="data" is n...
5 months ago
5 months ago
0 Hi! Ever Since There Was A Huge Frontend Upgrade (A Few Weeks Ago?), We’Ve Been Having Problems With Plotly 3D Scatter Plots For Which

The repro code:

import uuid

import numpy as np
from clearml import Task
from plotly import graph_objects as go

def start_clearml():
    task_name = f"debug_plotsR{uuid.uuid1().hex}"
    _clearml_init = dict(
        project_name="debug_clearml_plots",
        task_name=task_name,
        tags=["debug"],
        reuse_last_task_id=False,
    )
    task = Task.init(**_clearml_init)
    return task

def repro_code(n: int = 1000):
    task = start_clearml()
    logger = task.get_logger()...
5 months ago
0 Hi! Ever Since There Was A Huge Frontend Upgrade (A Few Weeks Ago?), We’Ve Been Having Problems With Plotly 3D Scatter Plots For Which

In the notebook, we can see that aspectmode="data" is properly respected, but the frontend seems to be discarding the scene layout

5 months ago