Repository: https://github.com/nok/sklearn-porter
Documentation: sklearn.svm.LinearSVC
In [1]:
import sys
sys.path.append('../../../../..')
In [2]:
from sklearn.datasets import load_iris
iris_data = load_iris()
X = iris_data.data
y = iris_data.target
print(X.shape, y.shape)
In [3]:
from sklearn import svm
clf = svm.LinearSVC(C=1., random_state=0)
clf.fit(X, y)
Out[3]:
In [4]:
from sklearn_porter import Porter
porter = Porter(clf, language='php')
output = porter.export()
print(output)