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 4 months ago

Reputation

0

Badges 1

84 × Eureka!
0 Votes
4 Answers
208 Views
0 Votes 4 Answers 208 Views
How can one combine ClearML with other tools. The documentation does not provide much information on integration. I am particularily interested in combining ...
one year ago
0 Votes
22 Answers
219 Views
0 Votes 22 Answers 219 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.
7 months ago
0 Votes
2 Answers
215 Views
0 Votes 2 Answers 215 Views
7 months ago
0 Votes
12 Answers
281 Views
0 Votes 12 Answers 281 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...
7 months ago
0 Votes
1 Answers
201 Views
0 Votes 1 Answers 201 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...
one year ago
0 Votes
12 Answers
224 Views
0 Votes 12 Answers 224 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...
one year ago
0 Votes
9 Answers
240 Views
0 Votes 9 Answers 240 Views
What is the difference between Model and InputModel?
7 months ago
0 Votes
0 Answers
248 Views
0 Votes 0 Answers 248 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...
7 months ago
0 Votes
4 Answers
265 Views
0 Votes 4 Answers 265 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...
7 months ago
0 Votes
1 Answers
284 Views
0 Votes 1 Answers 284 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.
7 months ago
0 Votes
4 Answers
140 Views
0 Votes 4 Answers 140 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 ...
4 months ago
0 Votes
31 Answers
4K Views
0 Votes 31 Answers 4K 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...
6 months ago
0 Votes
45 Answers
4K Views
0 Votes 45 Answers 4K Views
7 months ago
0 Votes
8 Answers
270 Views
0 Votes 8 Answers 270 Views
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

I have already been trying to contribute (have three pull requests), but honestly I feel it is a bit weird, that I need to update a documentation about something I do not understand, while I actually try to evaluate if ClearML is the right tool for our company...

7 months 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> Also, I think that - in this case, but also in other cases - the issue is not just the documentation, but also the design of the SDK.

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

What is helper_functions in

  • None
  • Nonegood for?
    I do not find any example. The descriptions says

By default the pipeline step function has no access to any of the other functions, by specifying additional functions here, the remote pipel...

6 months 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...

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

The first scenario is you standard "the code stays the same, the configuration changes" for the second step. Here, I want
The second and third scenario is "the configuration stays the same, the code changes", this is the case, e.g., if code is refactored, but effectively does the same as before.

@<1523701083040387072:profile|UnevenDolphin73> , you wrote

About the third scenario I'm not sure. If the configuration has changed, shouldn't the relevant steps (the ones where the configuration...

6 months ago
0 In

But still, in the web app the task is considered to be still "running". I am not sure what to do, so that the task is considered to be "completed".

7 months ago
0 In

@<1523701070390366208:profile|CostlyOstrich36> indeed

7 months ago
0 I Cannot Get The Configuration From A Task: I Run

Secondly, I do not understand this:

None says

Manually mark a Task as completed. This will close the running process and will change the Task’s status to Completed (Use this function to close and change status of remotely executed tasks). To simply change the Task’s status to completed, use task.close()

None says

Closes the current Task and cha...

7 months 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.

7 months ago
0 I Cannot Get The Configuration From A Task: I Run

@<1523701205467926528:profile|AgitatedDove14>

7 months ago
0 In

It means "The syntax for the file name, folder name or volume label / disk is wrong" somthing along those lines. The [...] is the directory path to my project, which I opened in PyCharm and from which I run the commands in the Python Console.

7 months ago
0 In

But then I do not see the "installed packages" in "excecution".

7 months ago
0 I Cannot Get The Configuration From A Task: I Run

@<1523701205467926528:profile|AgitatedDove14> : "does that make sense ?" Not really.

"you do not need to automatically Add/Log/Track things into the Task in the current process." - I do not need to automatically do [...]? You mean I can do it automatically, but alternatively I can do it manually? Do you mean I use close within a process to prevent automatic logging/adding/tracking? But, as far as I know, after I used close I am not able to log etc. manually either. So...

"Mark...

7 months 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:

"using your method you may not reach the best set of hyperparameters."

Of course you are right. It is an efficiency trade-off of speed vs effectiveness. Whether this is worth it or not depends on the use-case. Here it is worth it, because the performance of the modelling is not sensitive to the parameter we search for first. Being in the ball-park is enough. And, for the second set of parameters, we need to do a full grid search (the parameters are booleans and strings); thus, this wo...

4 months ago
0 What Is The Point Of User Properties In Comparisson To Hyperparameters In The Configuration Of A Task? While The Syntax Of Using Them Is Different, I Do Not See What User Properties Can Do That Hyperparameters / "Task Parameters" Are Not Able To Do.

I mean those, that you see in the screen shot. The difference in code is - at least for me - to write

  • parameters_data = {'custom1': 'no', 'custom2': False}; parameters_data = task.connect(parameters_data , name='data')
  • task.set_user_properties(custom1='no', custom2=False)
    image
7 months ago
7 months 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.

7 months ago
0 In

My entire code is

from clearml import Task, TaskTypes
task = Task.init(project_name='FirstTrial', task_name='first_trial', task_type=TaskTypes.training)
PACKAGE_VERSION = '0.4.1'
dataset_name = "Demodata"

which I - now - also ran as a whole script.

7 months ago
0 In

Ah, wait, when I run the entire script, I do see the respective information in "execution".

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

@<1523701205467926528:profile|AgitatedDove14> , you wrote

  • Components anyway need to be available when you define the pipeline controller/decorator, i.e. same codebase

No you an specify a different code base, see here:

Is the code in this "other" repo downloaded to the agent's machine? Or is the component's code pushed to the machine on which the repository is?
If the second case is true: How is the other machine (on which the other repo is lying on) turned into an agent?

6 months ago
Show more results compactanswers