Detail

Iris SVM (updated test publication)

lsschultz_wisc/AS_iris_svm_test_publish
Copy
lane test
Scikit-learn estimator
SVC

Input

List of records to evaluate with model. Each record is a list of 4 variables.
Type: ndarray
Shape: ['None', '4']

Output

Probabilities for membership in each of 2 classes
Type: ndarray
Shape: ['None', '2']

Run with DLHub SDK

from dlhub_sdk.client import DLHubClient
X = get_my_data() #replace this
dl = DLHubClient()
dl.run('lsschultz_wisc/AS_iris_svm_test_publish', X)

Get More Info with DLHub SDK

from dlhub_sdk.client import DLHubClient
dl = DLHubClient()
dl.describe_servable('lsschultz_wisc/AS_iris_svm_test_publish')

DLHub SDK Installation

pip install dlhub_sdk

DLHub SDK documentation