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
Answered
I Am Completely Stuck With The Serving. I Did The Custom Example. I See The Endpoint In

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 processing request: Model inference endpoint 'test_model_custom' not found"}

Can you confirm that this is the right URL:

curl -X POST " http://127.0.0.1:8080/serve/test_model_custom " -H "accept: application/json" -H "Content-Type: application/json" -d '{"features": [1, 2, 3]}'

if I change anything with the URL:
{"detail":"Not Found"}

Any different port and connection is refused.

  
  
Posted one year ago
Votes Newest

Answers 3


docker-compose I guess

  
  
Posted one year ago

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

  
  
Posted one year ago

Hi ConvolutedSealion94
Yes this seems like the correct curl
How did you spin the clearml-serving containers? is it with the docker-compose or with the helm chart (I remember that there are some pitfalls with the helm chart, and I would actually start with the local docker-compose to debug it)

  
  
Posted one year ago
513 Views
3 Answers
one year ago
one year ago
Tags