-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ad1e82
commit 741ffaf
Showing
10 changed files
with
255 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Train a model. | ||
import json | ||
import onnxruntime as rt | ||
from skl2onnx import to_onnx | ||
import numpy as np | ||
from sklearn.datasets import load_iris | ||
from sklearn.model_selection import train_test_split | ||
from sklearn.tree import DecisionTreeClassifier as De | ||
from hummingbird.ml import convert | ||
import torch | ||
|
||
iris = load_iris() | ||
X, y = iris.data, iris.target | ||
X = X.astype(np.float32) | ||
X_train, X_test, y_train, y_test = train_test_split(X, y) | ||
clr = De() | ||
clr.fit(X_train, y_train) | ||
|
||
torch_model = convert(clr, "pytorch").model | ||
|
||
|
||
# Convert into ONNX format. | ||
# export to onnx format | ||
|
||
# Input to the model | ||
shape = X_train.shape[1:] | ||
x = torch.rand(1, *shape, requires_grad=True) | ||
torch_out = torch_model(x) | ||
# Export the model | ||
torch.onnx.export(torch_model, # model being run | ||
# model input (or a tuple for multiple inputs) | ||
x, | ||
# where to save the model (can be a file or file-like object) | ||
"network.onnx", | ||
export_params=True, # store the trained parameter weights inside the model file | ||
opset_version=10, # the ONNX version to export the model to | ||
do_constant_folding=True, # whether to execute constant folding for optimization | ||
input_names=['input'], # the model's input names | ||
output_names=['output'], # the model's output names | ||
dynamic_axes={'input': {0: 'batch_size'}, # variable length axes | ||
'output': {0: 'batch_size'}}) | ||
|
||
d = ((x).detach().numpy()).reshape([-1]).tolist() | ||
|
||
data = dict(input_shapes=[shape], | ||
input_data=[d], | ||
output_data=[((o).detach().numpy()).reshape([-1]).tolist() for o in torch_out]) | ||
|
||
# Serialize data into file: | ||
json.dump(data, open("input.json", 'w')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"input_shapes": [[4]], "input_data": [[0.9813985824584961, 0.793540358543396, 0.548916757106781, 0.6483156681060791]], "output_data": [[0], [1.0, 0.0, 0.0]]} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.