-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
abstract object detection ms to ms dir
Signed-off-by: greg pereira <[email protected]>
- Loading branch information
1 parent
1964c56
commit 4d7fb11
Showing
15 changed files
with
167 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
PORT ?= 8000 | ||
APP ?= object_detection_python | ||
REGIISTRY ?= quay.io | ||
REGISTYR_ORG ?= ai-lab | ||
COMPONENT := model_servers | ||
|
||
IMAGE := $(REGIISTRY)/$(REGISTYR_ORG)/$(COMPONENT)/$(APP):latest | ||
CUDA_IMAGE := $(REGIISTRY)/$(REGISTYR_ORG)/$(COMPONENT)/$(APP)_cuda:latest | ||
VULKAN_IMAGE := $(REGIISTRY)/$(REGISTYR_ORG)/$(COMPONENT)/$(APP)_vulkan:latest | ||
|
||
MODEL_NAME ?= facebook/detr-resnet-101 | ||
MODEL_PATH := /models/facebook/detr-resnet-101 | ||
|
||
BIND_MOUNT_OPTIONS := ro | ||
OS := $(shell uname -s) | ||
SED_BUILD_COMMAND := | ||
ifeq ($(OS),Linux) | ||
BIND_MOUNT_OPTIONS := ro,Z | ||
endif | ||
|
||
.PHONY: install | ||
install: | ||
pip install -r requirements.txt | ||
|
||
.PHONY: download-model-python | ||
download-model-python: | ||
pip install -r ../../convert_models/requirements.txt | ||
python3 ../../convert_models/download_huggingface.py -m $(MODEL_NAME) | ||
cp -r converted_models/* ../../models | ||
rm -rf converted_models | ||
rm -rf ../../models/cache | ||
|
||
.PHONY: build | ||
build: | ||
sed -i '' 's/EXPOSE 8000/EXPOSE ${PORT}/g' base/Containerfile | ||
podman build -t $(IMAGE) . -f base/Containerfile | ||
sed -i '' 's/EXPOSE ${PORT}/EXPOSE 8000/g' base/Containerfile | ||
|
||
.PHONY: run | ||
run: | ||
cd ../../models && \ | ||
podman run -it -d -p $(PORT):$(PORT) -v ./$(MODEL_NAME):$(MODELS_PATH):$(BIND_MOUNT_OPTIONS) \ | ||
-e MODEL_PATH=$(MODELS_PATH) -e HOST=0.0.0.0 -e PORT=$(PORT) --net=host $(IMAGE) | ||
|
||
.PHONY: test | ||
test: | ||
$(MAKE) download-model-facebook-resnet-101-for-tests | ||
PORT=$(PORT) MODEL_NAME=$(MODEL_NAME) MODEL_PATH=$(MODEL_PATH) PORT=$(PORT) IMAGE=$(IMAGE) PULL_ALWAYS=0 pytest -s -vvv | ||
$(MAKE) -i clean | ||
|
||
.PHONY: clean | ||
clean: | ||
-rm -rf $(MODEL_NAME) | ||
-rm -rf .pytest_cache | ||
-rm -rf facebook | ||
|
||
|
||
.PHONY: facebook/detr-resnet-101 | ||
facebook/detr-resnet-101: | ||
pip install -r ../../convert_models/requirements.txt | ||
python3.11 ../../convert_models/download_huggingface.py -m facebook/detr-resnet-101 | ||
cp -r converted_models/facebook ./ | ||
rm -rf converted_models/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ requests | |
transformers | ||
torch | ||
uvicorn | ||
|
||
timm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import pytest_container | ||
import pytest | ||
import os | ||
import logging | ||
import platform | ||
|
||
if 'PORT' not in os.environ: | ||
PORT = 8000 | ||
else: | ||
PORT = os.environ['PORT'] | ||
try: | ||
PORT = int(PORT) | ||
except: | ||
PORT = 8000 | ||
|
||
if 'IMAGE' not in os.environ: | ||
IMAGE = 'quay.io/ai-lab/model_servers/object_detection_python:latest' | ||
else: | ||
IMAGE = os.environ['IMAGE'] | ||
|
||
MODEL_NAME=os.environ['MODEL_NAME'] | ||
MODEL_PATH=os.environ['MODEL_PATH'] | ||
|
||
BIND_MOUNT_OPTIONS = 'ro' | ||
if platform.system() == 'Linux': | ||
BIND_MOUNT_OPTIONS = 'ro,Z' | ||
|
||
MS = pytest_container.Container( | ||
url=f"containers-storage:{IMAGE}", | ||
volume_mounts=[ | ||
pytest_container.container.BindMount( | ||
container_path=f"{MODEL_PATH}", | ||
host_path=f"./{MODEL_NAME}", | ||
flags=[BIND_MOUNT_OPTIONS] | ||
) | ||
], | ||
extra_environment_variables={ | ||
"MODEL_PATH": f"{MODEL_PATH}", | ||
"HOST": "0.0.0.0", | ||
"PORT": f"{PORT}" | ||
}, | ||
forwarded_ports=[ | ||
pytest_container.PortForwarding( | ||
container_port=PORT, | ||
host_port=PORT | ||
) | ||
], | ||
) | ||
|
||
def pytest_addoption(parser): | ||
pytest_container.add_logging_level_options(parser) | ||
|
||
|
||
def pytest_generate_tests(metafunc): | ||
pytest_container.auto_container_parametrize(metafunc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pip==24.0 | ||
pytest-container==0.4.0 | ||
pytest-selenium==4.1.0 | ||
pytest-testinfra==10.1.0 | ||
pytest==8.1.1 | ||
requests==2.31.0 | ||
selenium==4.19.0 | ||
tenacity==8.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import pytest_container | ||
from .conftest import MS | ||
import tenacity | ||
|
||
CONTAINER_IMAGES = [MS] | ||
|
||
|
||
def test_etc_os_release_present(auto_container: pytest_container.container.ContainerData): | ||
assert auto_container.connection.file("/etc/os-release").exists | ||
|
||
@tenacity.retry(stop=tenacity.stop_after_attempt(5), wait=tenacity.wait_exponential()) | ||
def test_alive(auto_container: pytest_container.container.ContainerData, host): | ||
host.run_expect([0],f"curl http://localhost:{auto_container.forwarded_ports[0].host_port}",).stdout.strip() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
APP ?= object_detection | ||
PORT ?= 8000 | ||
|
||
DETR_MODEL_NAME := facebook/detr-resnet-101 | ||
|
||
.PHONY: download-model-detr-resnet | ||
download-model-detr-resnet: | ||
python3 ../../../convert_models/download_huggingface.py -m facebook/detr-resnet-101 | ||
|
||
|
||
.PHONY: build-mo |
File renamed without changes.
File renamed without changes.
File renamed without changes.