From 7f8fdfa05e40fdb9e00a07508de6cbe14519638d Mon Sep 17 00:00:00 2001 From: Jason Jafari Date: Sun, 16 Jun 2024 16:58:17 -0400 Subject: [PATCH] Small fix --- mlModelSaver/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mlModelSaver/__init__.py b/mlModelSaver/__init__.py index d2444cb..9d61467 100644 --- a/mlModelSaver/__init__.py +++ b/mlModelSaver/__init__.py @@ -77,7 +77,6 @@ def mlModelSavePredict(self, df, typeOfPredict = 'normal'): modelTypeConfig = supportedModels[modelType] if typeOfPredict == 'normal': results = getattr(self, modelTypeConfig['normalPredictorFunction'])(dfAfterTransformation) - print(results) for value in results: if isinstance(value, np.ndarray): res = {} @@ -88,9 +87,6 @@ def mlModelSavePredict(self, df, typeOfPredict = 'normal'): output.append({ outputsName[0]: value, }) - print(type(value)) - print(value) - print(outputsName) return output return output