Hi all, Are there any examples in the official (or external) documentation where I can see how ClearML and Docker work together? This comes related to anothe...
3 years ago
Is there any way to create a queue from code?
4 years ago
Regarding the new version 1.1.2, I have noticed type hints are now included in the script generated by PipelineDecorator.component in the function arguments....
4 years ago
Hi all! I have a question regarding clearml-agents that I have not been able to find in the documentation. I have seen an agent is also called a 'worker'. Wh...
4 years ago
Hi, not sure if I'm doing something wrong or I found a bug. When I try to overwrite some parameters in a cloned task using get_parameters and set_parameters ...
4 years ago
It is possible to attach to an OutputModel an object closely related to it (as some product of data preprocessing that has been done specifically for that mo...
4 years ago
Hi guys, Suppose I have the following script: import numpy as np import pandas as pd from clearml import Task # Import required project dependencies. from tf...
4 years ago
Is there any example showing how to work with nested pipelines? In my case I have several functions decorated with PipelineDecorator . In a pipeline I call s...
4 years ago
Hi all! I was checking the configuration logged under "HyperParameters" in the Web UI and the values of some parameters are not displayed. At first I thought...
3 years ago
Hi, I am experiencing issues when uploading artifacts to the Dataset task with ClearML version v1.1.4rc0. The problem is the artifacts are uploaded to the de...
4 years ago
Hi! I noticed a bug related to reusing the same component in a pipeline. I have prepared a mock example so that you can reproduce it: from clearml.automation...
4 years ago
Hi, can anyone help me with this code? (just a mock example, but it nicely captures the behavior of the real code) import pandas as pd from clearml import Ta...
3 years ago
Let's say that I specify the output_uri parameter in Task.init like this: task = Task.init( project_name="example_project", task_name="example_task", output_...
4 years ago
Hi, Is there any reason why artifacts linked to a task are not removed when the task is removed from the experiment list?
4 years ago
When ClearML converts a PipelineDecorator.component decorated function to script code, I have noticed that indexing syntax like A[:, 0] is rewritten as A[(:,...
4 years ago
Hi all, I am testing the new PipelineDecorator feature. Is there any way to automatically detect the Git repository in the pipeline step decorated with Pipel...
4 years ago
Hi, I just updated clearml to version v1.1.3. Right after launching a training pipeline, the system crashed due to the following error: Traceback (most recen...
4 years ago
It is a good practice to call a function decorated by PipelineDecorator in a for loop? I tried it in a real-world example and I didn't get the results I expe...
4 years ago
Hello folks! I don't know if this issue has already been addressed. I have a basic PipelineController script with two steps: one of task is for preprocessing...
4 years ago
Hi! I was wondering why ClearML recognize Scikit-learn scalers as Input Models... Am I missing something here? For me it would make sense to include the scal...
4 years ago
Hi! From a task created using PipelineDecorator.pipeline , is there any way to get a task ID from the name of the step listed in the table below? My plan is ...
4 years ago
I have another question regarding creating a Task with PipelineDecorator.component . Where can I specify the reuse_last_task_id parameter? I need to set it t...
4 years ago
I'm trying to implement a cleanup service by following this example https://github.com/allegroai/clearml/blob/master/examples/services/cleanup/cleanup_servic...
4 years ago
Hi! I was wondering if ClearML offers any solutions for the following situation. I have created a queue (say Q) for model training tasks, and two agents list...
4 years ago
Hello, I was wondering if clearML offers the option to spin up again the clearml-agent automatically every time the machine where it was being executed as a ...
4 years ago
Hi everybody, Where can I find the documentation about the new TaskScheduler feature?
4 years ago
Hi! I am implementing a cleanup service. After completing several training tasks, I am only interested in the trained models and some artifacts resulting fro...
4 years ago
Is there any reason why doing the following is not possible? Am I doing it right? I want to run a pipeline with different parameters but I get the following ...
4 years ago