forked from nok/sklearn-porter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasics.pct.py
59 lines (42 loc) · 1014 Bytes
/
basics.pct.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# %% [markdown]
# # sklearn-porter
#
# Repository: [https://github.com/nok/sklearn-porter](https://github.com/nok/sklearn-porter)
#
# ## LinearSVC
#
# Documentation: [sklearn.svm.LinearSVC](http://scikit-learn.org/stable/modules/generated/sklearn.svm.LinearSVC.html)
# %%
import sys
sys.path.append('../../../../..')
# %% [markdown]
# ### Load data
# %%
from sklearn.datasets import load_iris
iris_data = load_iris()
X = iris_data.data
y = iris_data.target
print(X.shape, y.shape)
# %% [markdown]
# ### Train classifier
# %%
from sklearn import svm
clf = svm.LinearSVC(C=1., random_state=0)
clf.fit(X, y)
# %% [markdown]
# ### Transpile classifier
# %%
from sklearn_porter import Porter
porter = Porter(clf, language='java')
output = porter.export()
print(output)
# %% [markdown]
# ### Run classification in Java
# %%
# Save classifier:
# with open('LinearSVC.java', 'w') as f:
# f.write(output)
# Compile model:
# $ javac -cp . LinearSVC.java
# Run classification:
# $ java LinearSVC 1 2 3 4