You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to pass extra parameters to my model using PREDICTIVE_UNIT_PARAMETER set in the s2i environment file. Currently my file looks like the one below
You should add these to your SeldonDeployment resource, see here. An example k8s json that shows this can be seen in a random ab test. You can also add whatever env variables you want to the k8s PodTemplateSpec in your componentSpec field.
Hi,
I'm trying to pass extra parameters to my model using PREDICTIVE_UNIT_PARAMETER set in the s2i environment file. Currently my file looks like the one below
MODEL_NAME=SkMnist
API_TYPE=REST
SERVICE_TYPE=MODEL
PERSISTENCE=0
PREDICTIVE_UNIT_PARAMETERS=[{
"a":2,
"b":3
}]
but after deploying, when checking for PREDICTIVE_UNIT_PARAMETERS env variable I'm seeing just an empty array ([]).
Am I setting this variable in a proper way? (according to the documentation it is a json string.
thanks,
Santiago
The text was updated successfully, but these errors were encountered: