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
YummyGrasshopper29
Moderator
8 Questions, 17 Answers
  Active since 18 May 2024
  Last activity 9 days ago

Reputation

0

Badges 1

15 × Eureka!
0 Votes
1 Answers
81 Views
0 Votes 1 Answers 81 Views
Is there any way to get value of step parameter/function kwarg? This is from documentation, but didn't manage to get value. pipe.add_function_step( name='ste...
one month ago
0 Votes
8 Answers
421 Views
0 Votes 8 Answers 421 Views
I tried to get data from dataset, but agent always look on localhost:8081. I change host in clearml.conf but have same error. How can I change host of clearm...
3 months ago
0 Votes
2 Answers
197 Views
0 Votes 2 Answers 197 Views
Hey, I am trying to clone existing pipeline using clearml API, but I didn't managed to override pipeline parameters. Task was cloned successfully with parame...
one month ago
0 Votes
3 Answers
141 Views
0 Votes 3 Answers 141 Views
Hey, I have pipeline from code, but have problem with caching. Actually clearml didn't cache already executed steps (tried to re-run pipeline from web-ui). D...
one month ago
0 Votes
3 Answers
37 Views
0 Votes 3 Answers 37 Views
Is there way to have dynamic pipeline parameters and use it inside pipeline controller? pipe.add_parameter(name="P", default="yes") print(pipe.get_parameters...
11 days ago
0 Votes
9 Answers
370 Views
0 Votes 9 Answers 370 Views
Hey, I am new with clearML and need some help 🙂 I am trying to run very simple pipeline inside docker container. I followed the documentation, created new q...
3 months ago
0 Votes
2 Answers
254 Views
0 Votes 2 Answers 254 Views
2 months ago
0 Votes
0 Answers
313 Views
0 Votes 0 Answers 313 Views
Here is sc from pipeline section (web ui)
3 months ago
one month ago
0 I Tried To Get Data From Dataset, But Agent Always Look On Localhost:8081. I Change Host In Clearml.Conf But Have Same Error. How Can I Change Host Of Clearml Fileserver?

I have GCP instance with official clearml image.

from clearml import StorageManager, Dataset

dataset = Dataset.create(
    dataset_project="Project", dataset_name="Dataset_name"
)

files = [
    'file.csv',
    'file1.csv',
]

for file in files:
    csv_file = StorageManager.get_local_copy(remote_url=file)
    dataset.add_files(path=csv_file)


# Upload dataset to ClearML server (customizable)
dataset.upload()
# commit dataset changes
dataset.finalize()
3 months ago
0 I Tried To Get Data From Dataset, But Agent Always Look On Localhost:8081. I Change Host In Clearml.Conf But Have Same Error. How Can I Change Host Of Clearml Fileserver?

I am running clearml server on gcp, but I didn't exposed ports instead I ssh to machine and do port forwarding to localhost. The problem is localhost on my machine is not same as localhost inside docker on worker. If I check dataset, files are stored in localhost, but actually it is not localhost. Didn't fond the solution yet how to properly setup hostname for dataserver. Any ideas?

3 months ago
3 months ago
0 Is There Way To Have Dynamic Pipeline Parameters And Use It Inside Pipeline Controller?

@<1523701070390366208:profile|CostlyOstrich36> any idea? 🙂

10 days ago
0 Is There Way To Have Dynamic Pipeline Parameters And Use It Inside Pipeline Controller?

Here is basic example:

from clearml import PipelineController

def step_function(param):
    print("Hello from function!")
    print("Param:", param)

if __name__ == '__main__':
    repo = '
'
    repo_branch = 'main'
    working_dir = 'pipelines'

    pipe = PipelineController(
        name='Test',
        project='Test',
        version='0.0.1',
        add_pipeline_tags=False,
        repo=repo,
        repo_branch=repo_branch,
        working_dir=working_dir
    )
    p...
10 days ago
0 Hey, I Am New With Clearml And Need Some Help

Yes, there is one agent. As I said, I am able to execute task, but have problem with pipeline

3 months ago
0 Hey, I Am New With Clearml And Need Some Help

Thanks for very fast replay!

3 months ago
0 Hey, I Am New With Clearml And Need Some Help

One more question 🙂
How can I force clearML not to install requirements before running task? (already have everything installed on docker machine)

3 months ago
0 Hey, I Am New With Clearml And Need Some Help

Ok, thanks for explanation. So pipeline controller is in Running state, while task 1 is in pending state. The solution will be to add one more agent?

3 months ago
0 Hey, I Am New With Clearml And Need Some Help

It works! Thanks man, you save my day!!

3 months ago