ClearML - Auto-Magical CI/CD to streamline your AI workload. Experiment Management, Data Management, Pipeline, Orchestration, Scheduling & Serving in one MLOps/LLMOps solution
Pipeline graph disappears when executing a step that depends on the output of multiple other pipeline steps.
Note that the pipeline still finishes as expected, without errors. The only problem is that the graph disappears.
Describe the bug
Pipeline graph disappears when executing a step that depends on the output of multiple other pipeline steps. Note that the pipeline still finishes as expected, without errors. The only problem is that the graph disappears.
To reproduce
Here is a small project to reproduce: pipeline-from-decorators.zip
I run the pipeline from the project root, setting the variable
PYTHONPATH=./
.When the execution of the pipeline reaches step
k_fold_model_trainer
, the pipeline graph vanishes.The error message copied from console:
ROR TypeError: Cannot read properties of undefined (reading 'filter')
``` at ngneat-dag.js:64:57 at Array.forEach (Expected behaviour
The pipeline steps should render correctly, like seen in the documentation, or in the image below, before the
k_fold_model_trainer
step.Environment
Related Discussion
A similar problem can be found here https://github.com/allegroai/clearml/issues/618, however no matter how I try to organize my imports, the problem still persists.