seldon-core
seldon-core copied to clipboard
An MLOps framework to package, deploy, monitor and manage thousands of production machine learning models
We are trying to serve mlflow models via seldon core for this it is using this python file for the prediction of mlflow model https://github.com/SeldonIO/seldon-core/blob/d84b97431c49602d25f6f5397ba540769ec695d9/servers/mlflowserver/mlflowserver/MLFlowServer.py , Is there any way...
When I build docker image for custom runtime with mlserver. ```sh mlserver build -t test . ``` Seldon core execute image without installed requiremenets.txt. **It acts as if it is...
## Describe the bug Hi. I've been using Seldon Core for a while, but still confused with a proper Ingress set up. Despite following (1) [the set up tutorial](https://docs.seldon.io/projects/seldon-core/en/latest/examples/seldon_core_setup.html) and...
## Describe the bug I created a Seldon Deployment with the following configuration ```yaml --- apiVersion: machinelearning.seldon.io/v1alpha2 kind: SeldonDeployment metadata: name: test-deployment spec: protocol: v2 predictors: - graph: name: transformer...
Trying to deploy SeldonDeployment by adding the below section parallel to volumes, but I'm able to observe that fsgroup is not getting considered, but always runAsUser: 8888 is getting overwriten....
## Describe the bug we need update SeldonDeployment by api. when we make a old SeldonDeployment `seldon-test-ali-1-cp-cp` and add one model to it . use code like this update it....
**What this PR does / why we need it**: **Which issue(s) this PR fixes**: Fixes #4132 **Special notes for your reviewer**:
Hello Seldon team, As part of a special usecase I need to access my custom server from an endpoint. In other words, I want to add some custom logic to...
It appears that the init container will automatically remove any volume mounts that you specify as part of your resource YAML when specifying a custom init container, & will instead...
I have an inference graph like ```yaml graph: name: output-transformer type: OUTPUT_TRANSFORMER endpoint: type: GRPC children: - name: input-transformer type: TRANSFORMER endpoint: type: GRPC children: - name: model type: MODEL...