Suppose that I already have a scikit-learn model and I want to save this to my Watson Machine Learning and deploy it using the python client.
The python client docs: http://wml-api-pyclient.mybluemix.net
I have like:
clf = svm.SVC(kernel='rbf')
clf.fit(train_data, train_labels)
# Evaluate your model.
predicted = clf.predict(test_data)
What I want to do is to deploy this model as a web service accessible via REST API.
I read in the Watson Machine Learning Documentation here: https://dataplatform.cloud.ibm.com/docs/content/analyze-data/wml-ai.html?audience=wdp&context=analytics
but I'm having trouble when deploying the model.
You can also deploy it as a python function. what you need is to wrap all your functionalities into a single deployable function (learn python closure).
The way you use the credential is the same in this Method.
after that, you can deploy it and access by two ways
This has been explained in detail in this see this post