Skip to content

Commit

Permalink
Upgrade version to 10.3 (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
xadupre authored Nov 26, 2021
1 parent da34917 commit 5a1b1d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion skl2onnx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
Main entry point to the converter from the *scikit-learn* to *onnx*.
"""
__version__ = "1.10.2"
__version__ = "1.10.3"
__author__ = "Microsoft"
__producer__ = "skl2onnx"
__producer_version__ = __version__
Expand Down
4 changes: 2 additions & 2 deletions tests/test_sklearn_scaler_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def test_min_max_scaler_double_clip(self):
def test_max_abs_scaler(self):
model = MaxAbsScaler()
data = [
[0.0, 0.0, 3.0],
[0.0, 0.0, -3.0],
[1.0, 1.0, 0.0],
[0.0, 2.0, 1.0],
[1.0, 0.0, 2.0],
Expand All @@ -389,7 +389,7 @@ def test_max_abs_scaler(self):
def test_max_abs_scaler_double(self):
model = MaxAbsScaler()
data = [
[0.0, 0.0, 3.0],
[0.0, 0.0, -3.0],
[1.0, 1.0, 0.0],
[0.0, 2.0, 1.0],
[1.0, 0.0, 2.0],
Expand Down

0 comments on commit 5a1b1d0

Please sign in to comment.