Is there a way to inference to BentoML service by using C# gRPC client?
I've searched and as far as I understood, I need a proto file for C# gRPC client but have no idea how to create one for BentoML service. I am trying to connect to BentoML service running with below code from "https://docs.bentoml.org/en/latest/tutorial.html"
import numpy as np
import bentoml
from bentoml.io import NumpyNdarray
iris_clf_runner = bentoml.sklearn.get("iris_clf:latest").to_runner()
svc = bentoml.Service("iris_classifier", runners=[iris_clf_runner])
@svc.api(input=NumpyNdarray(), output=NumpyNdarray())
def classify(input_series: np.ndarray) -> np.ndarray:
result = iris_clf_runner.predict.run(input_series)
return result