Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
xadupre committed Jul 3, 2023
1 parent 21c3a6e commit 66e885c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_algebra_custom_model_sub_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ def custom_classifier_converter(scope, operator, container):
class TestCustomModelAlgebraSubEstimator(unittest.TestCase):

def check_transform(self, obj, X):
self.log.debug("[check_transform------] type(obj)=%r" % type(obj))
expected = obj.transform(X)
onx = to_onnx(obj, X, target_opset=TARGET_OPSET)
try:
Expand All @@ -384,7 +383,6 @@ def check_transform(self, obj, X):
assert_almost_equal(expected, got, decimal=5)

def check_classifier(self, obj, X):
self.log.debug("[check_classifier------] type(obj)=%r" % type(obj))
expected_labels = obj.predict(X)
expected_probas = obj.predict_proba(X)
onx = to_onnx(obj, X, target_opset=TARGET_OPSET,
Expand Down

0 comments on commit 66e885c

Please sign in to comment.