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
VivaciousBadger56
Moderator
14 Questions, 84 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

84 × Eureka!
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
How do I properly complete a task in a Python console? If I run the code from clearml import Task, TaskTypes task = Task.init(project_name='FirstTrial', task...
one year ago
0 Votes
22 Answers
1K Views
0 Votes 22 Answers 1K Views
In
In None is said that the python environment is logged. I do not see where in the ClearML web app and I am not able to find a way to do this programmatically.
one year ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
I cannot get the configuration from a task: I run from clearml import Task, TaskTypes, Model, OutputModel, InputModel from clearml.task_parameters import Tas...
one year ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
In None it is said that code level variables are logged. I do not see where in the ClearML web app and I am not able to find a way to do this programmatically.
one year ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
What is the difference between Model and InputModel?
one year ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
I am trying to run the urbandsounds8k example, but when I run "preprocessing" I get the error in the line self.metadata = Task.get_task(task_id=self.original...
2 years ago
0 Votes
4 Answers
982 Views
0 Votes 4 Answers 982 Views
Hello everyone, I would like to know what your projects are in terms of the usage of ClearML pipelines? What are your most elaborate pipelines? So far, I am ...
one year ago
0 Votes
4 Answers
959 Views
0 Votes 4 Answers 959 Views
How can one combine ClearML with other tools. The documentation does not provide much information on integration. I am particularily interested in combining ...
2 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
2 years ago
0 Votes
2 Answers
940 Views
0 Votes 2 Answers 940 Views
one year ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
Is there an larger example on how to use task.connect other than in the doc string? For example None says "Once objects are connected to a task, all object e...
one year ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Hi everyone, I am very new to ClearML. I would like to do a tutorial to gain practical experience with ClearML. I have seen that https://clear.ml/docs/latest...
2 years ago
0 Votes
45 Answers
48K Views
0 Votes 45 Answers 48K Views
one year ago
0 Votes
31 Answers
44K Views
0 Votes 31 Answers 44K Views
ClearML pipelines can be build from tasks, functions, and decorated functions, according to the examples in None . I am guessing there was a certain way of d...
one year ago
0 Is There An Larger Example On How To Use Task.Connect Other Than In The Doc String? For Example

I expect either 'var1' to be 'b' or - better - there to be log of the change, so that I would be able to see how the value changed over time.

one year ago
0 Clearml Pipelines Can Be Build From Tasks, Functions, And Decorated Functions, According To The Examples In

No these are 3 different ways of building pipelines.

That is what I meant to say 🙂 , sorry for the confusion, @<1523701205467926528:profile|AgitatedDove14> .

@<1523701083040387072:profile|UnevenDolphin73> , your point is a strong one. What are clear situations in which pipelines can only be build from tasks, and not one of the other ways? An idea would be if the tasks are created from all kinds of - kind of - unrelated projects where the code that describes the pipeline does not ...

one year ago
0 I Am Trying To Run The Urbandsounds8K Example, But When I Run "Preprocessing" I Get The Error In The Line

KindChimpanzee37 : First I went to the dataset and clicked on "Task information ->" in the right bottom corner of the "VERSION INFO". I supposed that is the same as what you meant with "right click on more information"? Because I did not find any option to "right click on more information". The "Task information ->" leads me to a view in the experiment manager. I posted the two screen shots.

PS: It is weird to me that the datamanager leads me to the experiment manager, specifically an experi...

2 years ago
0 Is There A Way To Save The Models Completely On The Clearml Server? It Seems That Clearml Server Does Not Store The Models Or Artifacts Itself, But They Are Stored Somewhere Else (E.G., Aws S3-Bucket) Or On My Local Machine And Clearml Server Is Only Sto

@<1523701087100473344:profile|SuccessfulKoala55> : That is the link I posted as well. But this should be mentioned also at places where it is about about the external or non-external storage. Also it should be mentioned everywhere we talk about models or artifacts etc. Not necessarily in details, but at least with a sentence and a link.

one year ago
0 I Am Trying To Run The Urbandsounds8K Example, But When I Run "Preprocessing" I Get The Error In The Line

KindChimpanzee37 , this time, I was away for a week 🙂 . I do not think, that I made the mistake you suggested. At the top of the script I wrote
project_name = 'RL/Urbansounds'and then later
` self.original_dataset = Dataset.get(dataset_project=project_name, dataset_name='UrbanSounds example')

This will return the pandas dataframe we added in the previous task

self.metadata = Task.get_task(task_id=self.original_dataset.id).artifacts['metadata'].get() `

2 years ago
0 I Am Trying To Run The Urbandsounds8K Example, But When I Run "Preprocessing" I Get The Error In The Line

KindChimpanzee37 , I ensured that the dataset_name is the same in get_data.py and preprocessing.py and that seemed to help. Then, I got the error RuntimeError: No audio I/O backend is available. , because of which I installed PySoundFile with pip; that helped. Weirdly enough then, the old id error came back. So, I re-ran get_data.py and then preprocessing.py - this time the id error was gone again. Instead, I got `raise TypeError("Invalid file: {0!r}".format(self.name))
TypeError:...

2 years ago
0 Clearml Pipelines Can Be Build From Tasks, Functions, And Decorated Functions, According To The Examples In

: What does

  • The component code still needs to be self-composed (or, function component can also be quite complex)

Well it can address the additional repo (it will be automatically added to the PYTHONPATH), and you can add auxilary functions (as long as they are part of the initial pipeline script), by passing them to

helper_functions

mean? Is it not possible that I call code that is somewhere else on my local computer and/or in my code base? That makes thi...

one year ago
0 Is There An Larger Example On How To Use Task.Connect Other Than In The Doc String? For Example

Thank you I found the error.
myPar = task.connect(myPar, name='from TaskParameters')
is required.

one year ago
0 Is There A Way To Save The Models Completely On The Clearml Server? It Seems That Clearml Server Does Not Store The Models Or Artifacts Itself, But They Are Stored Somewhere Else (E.G., Aws S3-Bucket) Or On My Local Machine And Clearml Server Is Only Sto

@<1523701083040387072:profile|UnevenDolphin73> : How do you figure? In the past, my colleagues and I just shared the .zip file via email / MS Teams and it worked. So I don't think so.

one year ago
0 Hello Everyone, I Would Like To Know What Your Projects Are In Terms Of The Usage Of Clearml Pipelines? What Are Your Most Elaborate Pipelines? So Far, I Am Using "Only" A Pipeline That Looks Like This:

@<1537605940121964544:profile|EnthusiasticShrimp49> : The biggest advantage I see to split your code into pipeline components is caching. A little bit structuring your code, but I was told by the staff this should not one's main aim with ClearML components. What is your main take away for splitting your code into components?

My HPO on top of the pipeline is already working 🙂 I am currently experimenting on using the HPO in a (other) pipeline that creates two HPO steps (from the same funct...

one year ago
0 How Can One Combine Clearml With Other Tools. The Documentation Does Not Provide Much Information On Integration. I Am Particularily Interested In Combining Clearml With Kedro And A Feature Store. I Detail My Question In

KindChimpanzee37 : Ok, will do. (More question from my side though. :-D) But I need to have pretty good idea before presenting our concept to the bosses.

2 years ago
0 What Is The Difference Between Model And Inputmodel?

Also, I could not find any larger examples on github about Model, InputModel, or OutputModel. It's kind of difficult to build a PoC this way... 😅

one year ago
0 What Is The Difference Between Model And Inputmodel?

@<1523701070390366208:profile|CostlyOstrich36> : After more playing around, it seems that ClearML Server does not store the models or artifacts itself. These are stored somewhere else (e.g., AWS S3-bucket) or on my local machine and ClearML Server is only storing configuration parameters and previews (e.g., when the artifact is a pandas dataframe). Is that right? Is there a way to save the models completely on the ClearML server?

one year ago
0 What Is The Difference Between Model And Inputmodel?

@<1523701070390366208:profile|CostlyOstrich36> : Thanks, where can I find more information on ClearML's model repository. I hardly find any in the documentation.

Also, that leaves the question open, what Model is for. I described how I understand, the workflow should look like, but my question remains open...

one year ago
0 What Is The Difference Between Model And Inputmodel?

@<1523701070390366208:profile|CostlyOstrich36> I read those, but did not understand.

one year ago
0 I Am Trying To Run The Urbandsounds8K Example, But When I Run "Preprocessing" I Get The Error In The Line

CostlyOstrich36 sure:
[..]\urbansounds8k\venv\lib\site-packages\torchaudio\backend\utils.py:62: UserWarning: No audio backend is available. warnings.warn("No audio backend is available.") ClearML Task: overwriting (reusing) task id=[..] 2022-09-14 14:40:16,484 - clearml.Task - INFO - No repository found, storing script code instead ClearML results page: `
Traceback (most recent call last):
File "[..]\urbansounds8k\preprocessing.py", line 145, in <module>
datasetbuilder = DataSe...

2 years ago
0 Is There A Way To Save The Models Completely On The Clearml Server? It Seems That Clearml Server Does Not Store The Models Or Artifacts Itself, But They Are Stored Somewhere Else (E.G., Aws S3-Bucket) Or On My Local Machine And Clearml Server Is Only Sto

@<1523701083040387072:profile|UnevenDolphin73> : I do not get this impression, because during update_weights I get the message

2023-02-21 13:54:49,185 - clearml.model - INFO - No output storage destination defined, registering local model C:\Users..._Demodaten_FF_2023-02-21_13-53-51.624362.model

one year ago
0 What Is The Difference Between Model And Inputmodel?

As far as I understand, the workflow is like this. I define some model. Then I register it as an OutputModel. Then I train it. During training I save snapshots (not idea how, though) and then I save the final model when training is finished. This way the Model is a) connected to the task and b) available in the model store of ClearML.

Later, in a different task, I can load an already trained model with InputModel. This InputModel is read-only (regarding the ClearML model store), but I can ma...

one year ago
0 I Cannot Get The Configuration From A Task: I Run

Ok, I checked: A is terminated. This is not what I thought would happen and not what I intended with my documentation. I should clarify that.

one year ago
0 In

I see that with task.mark_completed(), I am able to programmatically complete the task.

one year ago
0 In

I am using a venv environment, managed by poetry. Not sure if that helps.

one year ago
0 In

I just see the website that I linked to. I am not sure what is meant by "python environment". I cannot make a screen shot, because I do not know where to look for this in the first place.

one year ago
Show more results compactanswers