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
VexedCat68
Moderator
60 Questions, 381 Answers
  Active since 10 January 2023
  Last activity 7 months ago

Reputation

0

Badges 1

371 × Eureka!
0 Votes
13 Answers
957 Views
0 Votes 13 Answers 957 Views
3 years ago
0 Votes
29 Answers
865 Views
0 Votes 29 Answers 865 Views
2 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
2 years ago
0 Votes
14 Answers
1K Views
0 Votes 14 Answers 1K Views
2 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
Is there a direct way to get a model using its id like it works with Dataset.get?
2 years ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
Pipeline_Controller.py doesn't exist in repo, or atleast the link to it in the docs is dead in the simple pipeline example. Any help would be appreciated.
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
2 years ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
3 years ago
0 Votes
5 Answers
978 Views
0 Votes 5 Answers 978 Views
3 years ago
0 Votes
9 Answers
892 Views
0 Votes 9 Answers 892 Views
I have a clearml server deployed. I can see in the docs that one way of doing things is through api calls. The docs mention the end point url but does not me...
2 years ago
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
Another simple query guys. I've installed clearml on ubuntu. However, it says command not found when i run any command with clearml . I feel like it might be...
3 years ago
0 Votes
3 Answers
953 Views
0 Votes 3 Answers 953 Views
In your docs for Dataset at https://clear.ml/docs/latest/docs/references/sdk/dataset#class-dataset , I think you might have duplicate explanations for list_m...
2 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
In the case where I'm passing a schedule_fn to add_task in a TaskScheduler, how do I pass the function arguments?
3 years ago
0 Votes
12 Answers
910 Views
0 Votes 12 Answers 910 Views
Is there a quicker way to abort all running experiments in a project? I have over a thousand running anonymous data tasks in a specific project and I want to...
2 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
2 years ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
3 years ago
0 Votes
15 Answers
991 Views
0 Votes 15 Answers 991 Views
How do I get args like epochs to show up in the UI configuration panel under hyperparameters? I want to be able to change number of epochs and learning rate ...
3 years ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
3 years ago
0 Votes
23 Answers
1K Views
0 Votes 23 Answers 1K Views
I'm looking at how triggers work in ClearML. Is there an example, maybe with clearml data and a dataset being uploaded or some other example?
3 years ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
Given I want to run a task in a pipeline using a base task id. One of my steps just finds the latest model to use. I want the task to output the id, and the ...
2 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Given this pipeline step, is there any way to get the return value outside of the pipeline? Like put split_dataset_id in a variable in the main pipeline file.
2 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Would appreciate some help. Getting this Error. ValueError: Node train_model, parameter '${split_dataset.split_dataset_id}', input type 'split_dataset_id' is...
2 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
In the configuration section of an experiment, I can see the args I passed via argparse. Is there any way to create other sections other than args and tf_define
3 years ago
0 Votes
15 Answers
1K Views
0 Votes 15 Answers 1K Views
3 years ago
0 Votes
16 Answers
1K Views
0 Votes 16 Answers 1K Views
2 years ago
0 Votes
27 Answers
1K Views
0 Votes 27 Answers 1K Views
I wanted to ask, how to run pipeline steps conditionally? E.g if step returns a specific value, exit the pipeline or run another step instead of the sequenti...
2 years ago
0 Votes
17 Answers
1K Views
0 Votes 17 Answers 1K Views
Should Dataset Triggers also be activated if there is no trigger condition except dataset_project and a new task starts in that project? Is this expected beh...
3 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
2 years ago
0 Votes
15 Answers
1K Views
0 Votes 15 Answers 1K Views
I'm publishing the model artifact after the tensorflow model is saved. But in the UI, the download button is grayed out. And get_local_copy() doesn't seem to...
2 years ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
I'm training a tensorflow model and saving it in the end. I looked at the OutputModel class. How do I connect the model I'm saving to the OutputModel?
2 years ago
Show more results questions
0 I Wanted To Ask, How To Run Pipeline Steps Conditionally? E.G If Step Returns A Specific Value, Exit The Pipeline Or Run Another Step Instead Of The Sequential Step

If I understood this correctly, so in case where we have defined steps in order as a parent child. If the parent had a pre execute callback return False, will all subsequent children nodes/steps not execute or will they just ignore it and still execute?

2 years ago
0 I'M Publishing The Model Artifact After The Tensorflow Model Is Saved. But In The Ui, The Download Button Is Grayed Out. And Get_Local_Copy() Doesn'T Seem To Work Either, Help Would Be Appreciated.

After the previous code, I got the model uploaded by the previous code using its ID. Now when I add tags here, they were visible in the UI

2 years ago
0 I'M Publishing The Model Artifact After The Tensorflow Model Is Saved. But In The Ui, The Download Button Is Grayed Out. And Get_Local_Copy() Doesn'T Seem To Work Either, Help Would Be Appreciated.

CostlyOstrich36 I'm observing some weird behavior. Before when I added tags to the model before publishing it, it worked fine and I could see the tags in the UI.

Now when I do it this way, tags aren't set. If I then run another code which gets the model, using ID, and then set tags, it worked fine. Let me share the codes.

2 years ago
0 I'M Publishing The Model Artifact After The Tensorflow Model Is Saved. But In The Ui, The Download Button Is Grayed Out. And Get_Local_Copy() Doesn'T Seem To Work Either, Help Would Be Appreciated.

I basically go to the model from the experiment first, then when in the model, I'm trying to download it but can't. I've screenshotted the situation.

2 years ago
0 I'M Publishing The Model Artifact After The Tensorflow Model Is Saved. But In The Ui, The Download Button Is Grayed Out. And Get_Local_Copy() Doesn'T Seem To Work Either, Help Would Be Appreciated.

Since I want to save the model to the clearml server? What should the port be alongside the url?

And in that case, if I do, model.save('test'), it will also save the model to the clearml server?

2 years ago
0 Um, Is There A Way To Delete An Artifact From A Task That Is Running?

AgitatedDove14 CostlyOstrich36 I think that is the approach that'll work for me. I just need to be able to remove checkpoints I don't need given I know their name, from the UI and Storage.

2 years ago
0 I'M Publishing The Model Artifact After The Tensorflow Model Is Saved. But In The Ui, The Download Button Is Grayed Out. And Get_Local_Copy() Doesn'T Seem To Work Either, Help Would Be Appreciated.

For anyone facing a similar issue to mine and wanting the model to uploaded just like data is uploaded,

in the Task.init, set the output_uri = True.

This basically makes it use the default file server for clearml that you define in the clearml.conf file. Ty.

2 years ago
0 I'M Looking At How Triggers Work In Clearml. Is There An Example, Maybe With Clearml Data And A Dataset Being Uploaded Or Some Other Example?

This here shows my situation. You can see the code on the left and the tasks called 'Cassava Training' on the right. They keep getting enqueued even though I only sent a trigger once. By that I mean I only published a dataset once.

3 years ago
0 I'M Looking At How Triggers Work In Clearml. Is There An Example, Maybe With Clearml Data And A Dataset Being Uploaded Or Some Other Example?

So I took dataset trigger from this and added it to my own test code, which needs to run a task every time this trigger is activated.

3 years ago
0 Is This The Write Way To Add A Tag To An Output Model Artifact Of A Task? Torch.Save(Model, '

I'm using clearml installed via pip in a conda env. Do I find this file inside the environment directory?

2 years ago
0 When It Comes To Continuous Training, I Wanted To Know How You Train Or Would Train If You Have Annotated Data Incoming? Do You Train Completely Online Where You Train As Soon As You Have A Training Example Available? Do You Instead Train When You Have A

Would you know what the pros would be to learning online other than the fact that the incoming data is as close to the current distribution of data based on time as possible for us. Also would those benefits worth it to train online?

3 years ago
0 In The Case Where I'M Passing A Schedule_Fn To Add_Task In A Taskscheduler, How Do I Pass The Function Arguments?

there are other parameters for add_task as well, I'm just curious as to how do I pass the folder and batch size in the schedule_fn=watch_folder part

3 years ago
0 I Keep Facing This Issue. I'M Trying To Set Up My Own Clearml Server Using This Tutorial.

I think maybe it does this because of cache or something. Maybe it keeps a record of an older login and when you restart the server, it keeps trying to use the older details maybe

3 years ago
0 I Have A Function That Runs Normally. Its Job Is To Monitor A Specific Folder, And When I Execute The Script Locally It Works Fine. When I Make A Taskscheduler And Pass That Function To The Scheduler, Then Run Remotely, Then I Get An Error: Clearml Resul

Additional Error info

Launching job: ScheduleJob(name='Watch Checkbox Detector Buffer Folder', base_task_id='', base_function=<function watch_folder at 0x7f6e308b6840>, queue=None, target_project=None, single_instance=False, task_parameters=None, task_overrides=None, clone_task=True, _executed_instances=['140111227815680', '140111227815680', '140111227815680', '140111227815680'], execution_limit_hours=None, recurring=True, starting_time=datetime.datetime(2021, 11, 25, 9, 45, 41, 175873), min...

3 years ago
0 I'M On The Machine With Clearml Server Hosted. Is There Any Way To See Datasets Uploaded To Clearml Data Without Downloading Them Using Clearml Data?

We want to get a clearer picture here to compare versioning with ClearML Data vs our own custom versioning

3 years ago
3 years ago
0 I'M Trying To Use Store Some Data In Clearml-Data. Then I Want To Get It Back Elsewhere Using Dataset.Get_Local_Copy. It Returns A Directory But I Don'T Know How To Actually Access And Use That Data, And Remove It When It'S Done. Help Would Be Appreciated

Here they are. I've created and published the dataset. Then when I try to get a local copy, the code works but i'm not sure how to proceed to be able to use that data.

3 years ago
Show more results compactanswers