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
JealousCrocodile85
Moderator
4 Questions, 9 Answers
  Active since 28 May 2025
  Last activity 6 days ago

Reputation

0

Badges 1

9 × Eureka!
0 Votes
14 Answers
351 Views
0 Votes 14 Answers 351 Views
2 months ago
0 Votes
2 Answers
326 Views
0 Votes 2 Answers 326 Views
Hello!! New to ClearML, trying it out now 🙂 I have a few questions: - Is there a way to easily deploy a model using the UI, or should it be done via the CLI...
3 months ago
0 Votes
2 Answers
201 Views
0 Votes 2 Answers 201 Views
Hello! It's my second time trying ClearML - hoping this time I will succeed 🙌 I've trained a simple random forest model and uploaded it to clearml-serving e...
9 days ago
0 Votes
1 Answers
179 Views
0 Votes 1 Answers 179 Views
Hello! I just managed to get a model's response for the first time in months 😄 The difference is that I used the preprocess script along with the endpoint. ...
6 days ago
0 Hello! It'S My Second Time Trying Clearml - Hoping This Time I Will Succeed

Thank you for your answer, @<1523701205467926528:profile|AgitatedDove14> !
I've managed to compose a docker with the needed version.

Should I be deploying the entire docker file for every model, with the updated requirements?
Or, can I deploy everything (Prometheus, Grafana, etc.) once and make a serving docker yml for each model with a different port?

Eventually, I want many models (with different package versions) served within a single machine

6 days ago
0 Hello! I'Ve Been Trying To Use Clearml For The First Time, But I Cannot Seem To Run The First Serving Model. First, I Run The Following In Powershell: >>> Clearml-Serving Create --Name "June Test" Log: Clearml-Serving - Cli For Launching Clearml Serving

In Python, I ran the following with many variation of the data:

import requests
from typing import Any
import numpy as np
import json

url = "
"

raw_input = json.dumps([1, 2])  # This becomes a JSON string like "[1, 2]"

response = requests.post(
    url=url,
    headers={
        'accept': 'application/json',
        'Content-Type': 'application/json'
    },
    json=raw_input
)

print(response.status_code, response.json())

And always got:

422 {'detail': "Error ...
2 months ago
0 Hello! I'Ve Been Trying To Use Clearml For The First Time, But I Cannot Seem To Run The First Serving Model. First, I Run The Following In Powershell: >>> Clearml-Serving Create --Name "June Test" Log: Clearml-Serving - Cli For Launching Clearml Serving

I'm mostly with agreement with you on that 🙂
ClearML has a great documentation. But now that I've tried it all, I gave ChatGPT a shot. It got me introduced to the /docs#/, which is kind of a nice way to test the API.
But the issue still remains and I cannot finish my POC 😞

2 months ago
0 Hello! I'Ve Been Trying To Use Clearml For The First Time, But I Cannot Seem To Run The First Serving Model. First, I Run The Following In Powershell: >>> Clearml-Serving Create --Name "June Test" Log: Clearml-Serving - Cli For Launching Clearml Serving

Hi @<1523701070390366208:profile|CostlyOstrich36>
Sorry for the delayed response.

No errors in the serving containers.
I did follow the link you've shared before posting. I ran the following:
curl.exe -X POST " None " -H "accept: application/json" -H "Content-Type: application/json" -d '{"x0": 1, "x1": 2}'
(note that I'm using port 8082, since 8080 is already taken by ClearML Server on this VM).
and got the following response:

...

2 months ago
0 Hello! I'Ve Been Trying To Use Clearml For The First Time, But I Cannot Seem To Run The First Serving Model. First, I Run The Following In Powershell: >>> Clearml-Serving Create --Name "June Test" Log: Clearml-Serving - Cli For Launching Clearml Serving

So, I went to the link None in order to use it like Postman. Testing the API without using Python. It was ChatGPT that directed me there, and it is kind of a nice way to validate the API

2 months ago
0 Hello!! New To Clearml, Trying It Out Now

Thank you very much, @<1523701070390366208:profile|CostlyOstrich36> !

3 months ago