greetings fellow organic lifeforms I’m having some problems with my jetson nano 4GB running the inference server docker . i’m trying to do some bird detection using the jetson nano as a inference server . my python code works just fine using https://detect.roboflow.com but not using the ip address of the nano . the curl example also works just fine . the code is as follows
CLIENT = InferenceHTTPClient(
api_url=“http://192.168.2.103:9001”,
api_key=“my_api_key”
)
result = CLIENT.infer(“heron.jpg”, model_id=“heron-hunter/3”)
the important errors are:
inference_sdk.http.errors.HTTPCallErrorError: HTTPCallErrorError(description='404 Client Error: Not Found for url: (http)://192.168.2.103:9001/model/registry
Cannot GET /model/registry
thx for any help in advance