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
JumpyRaven4
Moderator
4 Questions, 33 Answers
  Active since 18 May 2023
  Last activity 8 months ago

Reputation

0

Badges 1

32 × Eureka!
0 Votes
26 Answers
610 Views
0 Votes 26 Answers 610 Views
9 months ago
0 Votes
15 Answers
929 Views
0 Votes 15 Answers 929 Views
Hi Guys, we are running clearml-serving on a kube cluster on AWS and we have noticed that we are getting some 502 errors once in a while that we can't seem t...
11 months ago
0 Votes
11 Answers
574 Views
0 Votes 11 Answers 574 Views
8 months ago
0 Votes
4 Answers
991 Views
0 Votes 4 Answers 991 Views
Hi Guys, I have a question regarding Model tracking. I have pipelines that use Xgboost through the scikit-learn api to perform: - Feature selection through n...
one year ago
0 Hi Guys, We Are Running Clearml-Serving On A Kube Cluster On Aws And We Have Noticed That We Are Getting Some 502 Errors Once In A While That We Can'T Seem To Trace Back.

we have tried both and got the same issue (gunicorn vs uvcorn).
No I meant creating a

@router.post(
    "/sleep",
    tags=["temp"],
    response_description="Return HTTP Status Code 200 (OK)",
    status_code=status.HTTP_200_OK,
    response_model=TestResponse,
)
# def here instead of async def
def post_sleep(time_sleep: float) -> TestResponse:
    """ """
    time.sleep(time_sleep)
    return TestResponse(status="OK")
11 months ago
Show more results compactanswers