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
Hi @<1523701070390366208:profile|CostlyOstrich36> , sure I’ll do that ASAP
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()...
In the notebook, we can see that aspectmode="data"
is properly respected, but the frontend seems to be discarding the scene layout
But what we can in the ClearML frontend:
It used to work a few weeks ago, before the huge frontend change
None issue created on GH