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
SorePelican79
Moderator
9 Questions, 18 Answers
  Active since 07 March 2023
  Last activity 11 months ago

Reputation

0

Badges 1

18 × Eureka!
0 Votes
0 Answers
674 Views
0 Votes 0 Answers 674 Views
some example also bringing {}:from clearml import Task # Initialize the task task = Task.init(project_name='your_project', task_name='your_task') # Define a ...
11 months ago
0 Votes
9 Answers
638 Views
0 Votes 9 Answers 638 Views
Hi. Executing reports I noticed quadruple, identically rendered results. Does anybody know a solution? E.g. None
11 months ago
0 Votes
1 Answers
858 Views
0 Votes 1 Answers 858 Views
one year ago
0 Votes
4 Answers
950 Views
0 Votes 4 Answers 950 Views
one year ago
0 Votes
2 Answers
852 Views
0 Votes 2 Answers 852 Views
one year ago
0 Votes
1 Answers
629 Views
0 Votes 1 Answers 629 Views
Hi We want to reuse the configuration when having cloned a task. For some reason it does not return it but I get {} for this former_config: self.current_task...
11 months ago
0 Votes
1 Answers
674 Views
0 Votes 1 Answers 674 Views
11 months ago
0 Votes
2 Answers
822 Views
0 Votes 2 Answers 822 Views
one year ago
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
11 months ago
0 Hi. We Are Building A Pipeline. For This, We Try To Get Access To Artefacts From Preceding Tasks In The Pipeline, Via Their Task Id, Like Hpo_Task = Task.Get_Task(Task_Id=Hpo_Task_Id) But These Seem Not To Work Reliably, Presumably Because It Is Not Guara

here is another failure which sometimes occurs along the pipeline: Launching step [model_training]
Launching step: model_training
Parameters:
{'kwargs/pipe_task_id': '6818423a08684b0d9972c92e5e38d6bc', 'kwargs_artifacts/dataset_id': '${version_dataset.id}.dataset_id', 'kwargs_artifacts/hpo_task_id': '${hyperparameter_optimization.id}.task_id'}
Configurations:
{}
Overrides:
{}
ClearML results page: [None](http://app.clearml.dev0.xrnd-modeling.dfman.info/projects/2a741ad0a93e49e48d5ecde83286e4...

11 months ago
0 Hi. We Are Building A Pipeline. For This, We Try To Get Access To Artefacts From Preceding Tasks In The Pipeline, Via Their Task Id, Like Hpo_Task = Task.Get_Task(Task_Id=Hpo_Task_Id) But These Seem Not To Work Reliably, Presumably Because It Is Not Guara

Hi John. Thanks for your quick response. I looked carefully in the documentation and my use case seems to be standard for clearML. However I get this error message. clearml.Task - ERROR - Failed reloading task

11 months ago
0 Hi. We Are Building A Pipeline. For This, We Try To Get Access To Artefacts From Preceding Tasks In The Pipeline, Via Their Task Id, Like Hpo_Task = Task.Get_Task(Task_Id=Hpo_Task_Id) But These Seem Not To Work Reliably, Presumably Because It Is Not Guara

import os
from datetime import datetime
from typing import List, Optional, Sequence, Union
import json
import pickle

import typer
from clearml import Dataset, Task, TaskTypes
from clearml.automation import PipelineController
from clearml.utilities.config import config_dict_to_text

from src.main.python.pkautopilot.configuration import PipelineConfig
from src.main.python.pkautopilot.constants import *
from task1_dataset_versioning import dataset_versioning
from task2_hpo import hpo
from task3...

11 months ago
0 Hi. We Are Building A Pipeline. For This, We Try To Get Access To Artefacts From Preceding Tasks In The Pipeline, Via Their Task Id, Like Hpo_Task = Task.Get_Task(Task_Id=Hpo_Task_Id) But These Seem Not To Work Reliably, Presumably Because It Is Not Guara

I also want the subsequent tasks to access artefacts from the pipeline task (the config.yaml) as well as artefacts from prior tasks. Here and then it fails. not always

11 months ago
0 Hi. We Are Building A Pipeline. For This, We Try To Get Access To Artefacts From Preceding Tasks In The Pipeline, Via Their Task Id, Like Hpo_Task = Task.Get_Task(Task_Id=Hpo_Task_Id) But These Seem Not To Work Reliably, Presumably Because It Is Not Guara

def dataset_versioning(
pipe_task_id: str
):

import os
from clearml import Dataset, Task, TaskTypes

from src.main.python.pkautopilot.configuration import PipelineConfig
from src.main.python.pkautopilot.constants import (TRAIN_FILE_NAME, TEST_FILE_NAME, CLEARML_BUCKET,
                                                   SUBDIR_DATASETS, CLEARML_PIPELINE_VERSION_DATASET, CLEARML_DATASET_KEY,
                                                   AWS_ACCESS_KEY, SUBD...
11 months ago
11 months ago
0 Hi. Executing Reports I Noticed Quadruple, Identically Rendered Results. Does Anybody Know A Solution? E.G.

what else do you need? I am on client side, here but can find out more about our server installation, if that is your point

11 months ago
11 months ago
0 Dear All, Great To Join Your Community. We Are Working On Plant Growth Stage Models At Basf For Farmers And I Was Wondering If Clearml Can Be Used Also For Data Versioning Of Tabular Data, Structured Data. I Would Like To Track If This And That Row Is Par

Hi John, thank you. However, I could not find a hint there how to versionize tablular data. Our data is essentially a huge data frame where each ground truth data point is a row with a unique id. How can I track in clearML that this and that row was part of experiment x because it belonged to test/training data set y?

one year ago