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
CostlyOstrich36
Moderator
0 Questions, 4210 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0
0 Hey Clearml, Pipeline From Tasks: Following This Example

Hi @<1523701283830108160:profile|UnsightlyBeetle11> , I think you can store txt artifacts so you can store the string there. If it's not too long, you can even fetch it from the preview

2 years ago
0 I Have A Local Folder A, And A Dataset B. A:

Hi RoughTiger69 ,

If you create a child version and add the delta of the files to the child, fetching the child version will also fetch the parents files as well

3 years ago
0 Hi Folks, I Have A Question On The

Hi ObedientToad56 🙂

My question is on how the deployment would be once we have verified the endpoints are working in a local container.

I isn't the deployment just running the inference container? You just open up the endpoints towards where you wanna server, no?

3 years ago
0 Hi Quick Question: Does Task.Connect_Configuration Support Omegaconf Dictconfig Objects? Ie. Can I Do:

JitteryCoyote63 , I think so.

config = OmegaConf.load(train_task.connect_configuration(config_path))

Should work

3 years ago
0 I Guess One Experiment Is Running Backwards In Time

I have no idea, but considering that the version for http://app.clear.ml was updated recently (last week from what I noticed) I'd be guessing that the self hosted server should be right around the corner 😉

3 years 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?

In the webUI, when you go to the dataset, where do you see it is saved? You can click on 'full details' in any version of a dataset and see that in the artifacts section

one year ago
0 Hi All, Is There An Easy Way To Ping The Server Programatically? I'M Just Trying To See What Is The Default Server That Is Set, And Is It Responsive

Hmmm, maybe you could save it as an env var. There isn't a 'default' server per say since you can deploy anywhere yourself. Regarding to check if it's alive, you can either check ping it with curl or check up on the docker status of the server 🙂

4 years ago
0 Hi, I Am Running A Script Very Similar To The One In

For example:

task = Task.init(project_name='examples', task_name='PyTorch MNIST train', output_uri=True)

    # Training settings
    parser = argparse.ArgumentParser(description='PyTorch MNIST Example')
    parser.add_argument('--ds-name', default="blabla")
    args = parser.parse_args()
one year ago
0 Hi, I Am Trying To Use Omegaconf With Task.Connect_Configuration And I Get The Following Error:

Regarding connect_configuration() , reading into the docs I see that this method needs to be called before reading the config file
https://clear.ml/docs/latest/docs/references/sdk/task#connect_configuration

3 years ago
3 years ago
0 Hi Everyone! I Have A Question About

Hi @<1569496075083976704:profile|SweetShells3> , do you mean to run the CLI command via python code?

2 years ago
0 Another Qn, Is Clearml-Data Analogous To A Feature-Store

ClearML has a built in model repository so together I think they make a "feature store" again, it really depends on your definition

3 years ago
0 Hi All, I'M Want To Compare 2 Different Tasks Plots, E.G., I Have A Histogram Of F1 Values For 2 Different Models. However, They Histogram Comparison Only Shrinks The Bars (See Attached Image). Is There A Way To Make The Bars With Normal Width / Compare T

Hi @<1582179661935284224:profile|AbruptJellyfish92> , how do the histograms look when you're not in comparison mode?

Can you provide a self contained snippet that creates such histograms that reproduce this behavior please?

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

VexedCat68 , I was about to mention it myself. Maybe only keeping last few or last best checkpoints would be best in this case. I think SDK also supports this quite well 🙂

3 years ago
0 Hello Everyone, I Encountered The Following Error When I Tried To

The ubuntu is the client side or you changed OS on the server side?

one year ago
0 Hi All, I’M Running Experiments Using Clearml. The Training Is Very Slow, And I’M Getting The Following Errors And Warnings:

From what I understand, by default the ES has a low disk waterkmark set at 95% of the disk capacity. Once reached the shard is transitioned to a read only mode. Since you have a large disk of 1.8Tb the remaining 85Gb is below the 5%.

Basically you need to set the following env vars in elasticsearch service in the docker compose:
` - cluster.routing.allocation.disk.watermark.low=10gb
- cluster.routing.allocation.disk.watermark.high=10gb
- cluster.routing.allocation.disk.wate...

3 years ago
0 Hi, I Have A Worker Running In Services Mode With

I assigned both the pipeline controller and the component to this worker. Do I rather need to create two agents, one in services mode for the controller and then another one (not in services mode) for the component (which does training and predictions)? But, this seems to defeat the point of being able to run multiple tasks in services mode...

Yes. Again, the services mode is for special 'system' services if you will. The controller can run on the services agent (although not necessary...

one year ago
0 Hello

Not that I know of 🙂

2 years ago
0 Hi Everyone, Quick Question: Is There Any Easy Way To

Hi ScantChimpanzee51 , I think you can get it via the API, this sits on task.data.output.destination retrieve the task object via API and play with it a bit to see where this sits 🙂

2 years ago
0 Using

WackyRabbit7 aight, thx for the info I'll take a look 🙂

4 years ago
0 Can I Change The Clearml-Serving Inference Port? 8080 Is Already Used For My Self-Hosted Server.. I Guess I Can Just Change It In The Docker-Compose, But I Find A Little Weird That You Are Using This Port If The Self-Hosted Server Web Is Hosted In It..

Hi ElegantCoyote26 ,

It doesn't seem that using port 8080 is mandatory and you can simply change it when you run ClearML-Serving - i.e docker run -v ~/clearml.conf:/root/clearml.conf -p 8085:8085

My guess is that the example uses port 8080 because usually the ClearML backend and the Serving would run on different machines

3 years ago
0 Hello Guys, I Got This Error On My Pipeline Execution When Processing Data For Model Training. There Are About 10 Steps, But This Errors Occured When It Reaches Step 7

Hi MoodyCentipede68 ,

What version of ClearML / ClearML-Agent are you using? Is it a self hosted server or the SaaS?
Also, can you explain what step 7 was trying to do? Is it running locally or distributed?

3 years ago
Show more results compactanswers