Added seldon

This commit is contained in:
Alejandro Saucedo 2020-08-05 08:12:51 +01:00
parent dc3d94dd2a
commit 4a54a37590
2 changed files with 43 additions and 0 deletions

8
seldon/Model.py Normal file
View file

@ -0,0 +1,8 @@
import subprocess
class Model:
def __init__(self):
pass
def predict(self, X, names=[], meta=[]):
return subprocess.check_output(["bin/main"])