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
ConvolutedSealion94
Moderator
17 Questions, 90 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

89 × Eureka!
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
3 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
Where does clearml pick up these metrics from the code? When I run the same code in a notebook I can't figure out how to extract these numbers from the train...
3 years ago
0 Votes
12 Answers
2K Views
0 Votes 12 Answers 2K Views
I deployed a model with: clearml-serving \ --id 875de894b62144a7949e471532728809 \ model add \ --engine "xgboost" \ --endpoint "best_model" \ --preprocess "t...
3 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
How do I think about tasks/task_name-s? Do I see right if I run the same task with the same name, it overwrites the previous run? Is it possible to fail if t...
3 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
How does the Preprocess class exactly work? I need to pass information to it but it's _ init _ function doesn't have any parameters. How can I load an artifa...
3 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
I am completely stuck with the serving. I did the custom example. I see the endpoint in clearml-serving -id ... model list and it replies {"detail":"Error pr...
3 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
3 years ago
0 Votes
27 Answers
2K Views
0 Votes 27 Answers 2K Views
Hi, I am new to ClearML: When I run an experiment in a shell (having a single line of Task definition) I am getting this error: clearml.Repository Detection ...
3 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Once I have a model successfully saved in ClearML, how can I instantiate it in a notebook? I have this for artifacts: def get_artifact(task_id, artifact_name...
3 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
What happens if the Task.init doesn't happen in the same py file as the "data science" stuff I have a list of classes that do the coding and I initialise the...
3 years ago
0 Votes
12 Answers
2K Views
0 Votes 12 Answers 2K Views
How can I remove a service with clearml-serving?
2 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
(the payload is not the correct form, can that be a problem? I'd rather figure this out before I recreate the rather convoluted data structure that needs to ...
3 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
https://github.com/allegroai/clearml/blob/master/examples/frameworks/xgboost/xgboost_metrics.py I ran this code and get these charts
3 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
3 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
I saw that ClearML overrides the random number generator is it possible to control this behaviour?
3 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
2 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
Ok, but it must be somewhere in the bst class
3 years ago
0 Hi, I Am New To Clearml: When I Run An Experiment In A Shell (Having A Single Line Of Task Definition) I Am Getting This Error:

interesting if I run the script from the repo main directory with
python code/run.py
it still gives me the same error message

clearml.Repository Detection - WARNING - Can't get diff information for git repo in repo/code

3 years ago
0 How Does The

clearml-serving needs a "Preprocess" class in a file that is added to the endpoint.

3 years ago
0 Hi, I Am New To Clearml: When I Run An Experiment In A Shell (Having A Single Line Of Task Definition) I Am Getting This Error:

but I am one level lower than top. so:

~/work/repo is the main repo dir

~/work/repo/code/run.py and I am running python run.py in ~/work/repo/code

3 years ago
0 I Deployed A Model With:

I guess so, this was done by our DevOps guy and he said he is following instructions

3 years ago
0 I Deployed A Model With:

Is there a more detailed logging about what's going on?

3 years ago
0 Hi, I Am New To Clearml: When I Run An Experiment In A Shell (Having A Single Line Of Task Definition) I Am Getting This Error:

nah, it runs about 1 minute of standards SQL->dataframes->xgboost pipeline with some file saving

3 years ago
0 I Deployed A Model With:

This is very different than from in the xgboost example:

3 years ago
0 I Saw That Clearml Overrides The Random Number Generator Is It Possible To Control This Behaviour?

Yeah, I found it, thanks.

I also found that you should have a deterministic ordering before you apply a fixed seed random sampling or else you will have a lot of head-scratching and assertion errors...

3 years ago
0 How Does The

This receives the payload from the server and turns it into something that can be fed to the model. This in out case depends on a data structure that is stored on the clearml server as an artifact. I need to communicate this to the class so it can pick it up and use it when called

3 years ago
0 Hi, I Am New To Clearml: When I Run An Experiment In A Shell (Having A Single Line Of Task Definition) I Am Getting This Error:

This was not something I was expecting to break.

If you enable nbdime globally and switch virtual environments, then git diff will fail.

3 years ago
0 How Can I Remove A Service With Clearml-Serving?

also random tasks are popping up in the DevOps project in the UI

2 years ago
0 I Am Completely Stuck With The Serving. I Did The Custom Example. I See The Endpoint In

Apparently our devops guy figured it out that you needed to have a different port number and a different docker container given 8080 was already occupied

2 years ago
0 Hi, I Am New To Clearml: When I Run An Experiment In A Shell (Having A Single Line Of Task Definition) I Am Getting This Error:

git-nbdiffdriver diff: git-nbdiffdriver: command not found fatal: external diff died, stopping at ...

3 years ago
0 What Happens If The Task.Init Doesn'T Happen In The Same Py File As The "Data Science" Stuff I Have A List Of Classes That Do The Coding And I Initialise The Task Outside Of Them. Something Like

I didn't realise that pickling is what triggers clearml to pick it up. I am actually saving a dictionary that contains the model as a value (+ training datasets)

3 years ago
0 What Happens If The Task.Init Doesn'T Happen In The Same Py File As The "Data Science" Stuff I Have A List Of Classes That Do The Coding And I Initialise The Task Outside Of Them. Something Like

What I try to do is that DSes have some lightweight baseclass that is independent of clearml they use and a framework have all the clearml specific code. This will allow them to experiment outside of clearml and only switch to it when they are in an OK state. This will also help not to pollute clearml spaces with half backed ideas

3 years ago
Show more results compactanswers