From c5df89c17bd408edc5cddd870208e720c84f145d Mon Sep 17 00:00:00 2001 From: Alejandro Saucedo Date: Sat, 12 Sep 2020 17:20:42 +0100 Subject: [PATCH] Removed containers --- Makefile | 21 --------------------- seldon/Model.py | 8 -------- 2 files changed, 29 deletions(-) delete mode 100644 seldon/Model.py diff --git a/Makefile b/Makefile index 38f10f1d6..4061ad0cb 100755 --- a/Makefile +++ b/Makefile @@ -133,27 +133,6 @@ build_shaders: --header-path test/compiled_shaders_include/kompute_test/shaders/ \ -v -docker_seldon_run: - docker run \ - --rm -it \ - -p 5000:5000 \ - axsauze/vulkan-seldon:0.1 \ - seldon-core-microservice Model REST - -docker_seldon_run_gpu: - docker run \ - --rm -it \ - --gpus all \ - -p 5000:5000 \ - axsauze/vulkan-seldon:0.1 \ - seldon-core-microservice Model REST - -docker_seldon_push: - docker push axsauze/vulkan-seldon:0.1 - -docker_seldon_build: - docker build . -f Dockerfile.seldon -t axsauze/vulkan-seldon:0.1 - docker_vulkan_build: docker build . -t axsauze/vulkan-sum:0.1 diff --git a/seldon/Model.py b/seldon/Model.py deleted file mode 100644 index f9c0417d7..000000000 --- a/seldon/Model.py +++ /dev/null @@ -1,8 +0,0 @@ -import subprocess - -class Model: - def __init__(self): - pass - - def predict(self, X, names=[], meta=[]): - return subprocess.check_output(["bin/main"])