Skip to content

Commit

Permalink
remove pre and post processes
Browse files Browse the repository at this point in the history
  • Loading branch information
animeshsingh committed May 10, 2019
1 parent 5c22c18 commit 9690520
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions python/sklearnserver/sklearnserver/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ def load(self):
self._joblib = joblib.load(model_file)
self.ready = True

def preprocess(self, inputs):
return inputs

def postprocess(self, outputs):
return outputs

def predict(self, inputs):
try:
inputs = np.array(inputs)
Expand Down

0 comments on commit 9690520

Please sign in to comment.