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.