-
Notifications
You must be signed in to change notification settings - Fork 116
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
dc33008
commit 87c3d80
Showing
26 changed files
with
412 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
name: object_detection | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- ./recipes/computer_vision/object_detection/** | ||
- .github/workflows/object_detection.yaml | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- ./recipes/computer_vision/object_detection/** | ||
- .github/workflows/object_detection.yaml | ||
|
||
workflow_dispatch: | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: object_detection | ||
COMPONENT: app | ||
|
||
jobs: | ||
build-and-push-image: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
services: | ||
registry: | ||
image: registry:2.8.3 | ||
ports: | ||
- 5000:5000 | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Install qemu dependency | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y qemu-user-static | ||
- name: Build Image | ||
id: build_image | ||
uses: redhat-actions/[email protected] | ||
with: | ||
image: ${{ env.REGISTRY }}/${{ github.event.repository.name }}/${{ env.COMPONENT }}/${{ env.IMAGE_NAME }} | ||
tags: latest | ||
platforms: linux/amd64, linux/arm64 | ||
containerfiles: ./recipes/computer_vision/${{ env.IMAGE_NAME }}/app/Containerfile | ||
context: recipes/computer_vision/${{ env.IMAGE_NAME }}/app | ||
|
||
- name: Set up Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Install Dependencies | ||
working-directory: ./recipes/computer_vision/${{ env.IMAGE_NAME }} | ||
run: make install | ||
|
||
- name: Download model | ||
working-directory: ./model_servers/object_detection_python | ||
run: make download-model-facebook-detr-resnet-101 | ||
|
||
# COMING SOON | ||
# - name: Run Functional Tests | ||
# shell: bash | ||
# run: make functional-tests | ||
# working-directory: ./recipes/computer_vision/${{ env.IMAGE_NAME }} | ||
|
||
- name: Login to Registry | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
uses: redhat-actions/[email protected] | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Push Image | ||
id: push_image | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
uses: redhat-actions/[email protected] | ||
with: | ||
image: ${{ steps.build_image.outputs.image }} | ||
tags: ${{ steps.build_image.outputs.tags }} | ||
registry: ${{ env.REGISTRY }} |
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
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,23 @@ | ||
APP := object_detection_python | ||
PORT ?= 8000 | ||
|
||
include ../../model_servers/common/Makefile.common | ||
|
||
MODEL_NAME ?= detr-resnet-101 | ||
MODEL_PATH := /app/models | ||
|
||
.PHONY: all | ||
all: build download-model-facebook-detr-resnet-101 run | ||
|
||
.PHONY: download-model-facebook-detr-resnet-101 | ||
download-model-facebook-detr-resnet-101: | ||
pip install -r ../../convert_models/requirements.txt | ||
cd ../../convert_models/ && \ | ||
python3 download_huggingface.py -m facebook/detr-resnet-101 | ||
cp -r ../../convert_models/converted_models/facebook/detr-resnet-101 ../../models/detr-resnet-101 | ||
|
||
.PHONY: test | ||
test: | ||
$(MAKE) download-model-facebook-detr-resnet-101 | ||
ln -s ../../models/detr-resnet-101 ./ | ||
PORT=$(PORT) MODEL_NAME=$(MODEL_NAME) MODEL_PATH=$(MODEL_PATH) IMAGE=$(IMAGE) PULL_ALWAYS=0 pytest -s -vvv |
9 changes: 5 additions & 4 deletions
9
...ject_detection/model_server/Containerfile → ...bject_detection_python/base/Containerfile
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM registry.access.redhat.com/ubi9/python-311:1-52 | ||
WORKDIR /locallm | ||
COPY requirements.txt /locallm/requirements.txt | ||
ARG PORT=8000 | ||
WORKDIR /app | ||
COPY src/requirements.txt . | ||
RUN pip install --upgrade pip && \ | ||
pip install --no-cache-dir --upgrade -r requirements.txt | ||
COPY object_detection_server.py object_detection_server.py | ||
EXPOSE 8000 | ||
COPY src/object_detection_server.py . | ||
EXPOSE $PORT | ||
ENTRYPOINT [ "uvicorn", "object_detection_server:app", "--host", "0.0.0.0" ] |
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
36 changes: 36 additions & 0 deletions
36
model_servers/object_detection_python/src/requirements.txt
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,36 @@ | ||
annotated-types==0.6.0 | ||
anyio==4.3.0 | ||
certifi==2024.2.2 | ||
charset-normalizer==3.3.2 | ||
click==8.1.7 | ||
fastapi==0.110.1 | ||
filelock==3.13.4 | ||
fsspec==2024.3.1 | ||
h11==0.14.0 | ||
huggingface-hub==0.22.2 | ||
idna==3.7 | ||
Jinja2==3.1.3 | ||
MarkupSafe==2.1.5 | ||
mpmath==1.3.0 | ||
networkx==3.3 | ||
numpy==1.26.4 | ||
packaging==24.0 | ||
pillow==10.3.0 | ||
pydantic==2.6.4 | ||
pydantic_core==2.16.3 | ||
PyYAML==6.0.1 | ||
regex==2023.12.25 | ||
requests==2.31.0 | ||
safetensors==0.4.2 | ||
sniffio==1.3.1 | ||
starlette==0.37.2 | ||
sympy==1.12 | ||
timm==0.9.16 | ||
tokenizers==0.15.2 | ||
torch==2.2.2 | ||
torchvision==0.17.2 | ||
tqdm==4.66.2 | ||
transformers==4.39.3 | ||
typing_extensions==4.11.0 | ||
urllib3==2.2.1 | ||
uvicorn==0.29.0 |
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,56 @@ | ||
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 = 'ghcr.io/containers/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}/{MODEL_NAME}", | ||
host_path=f"./{MODEL_NAME}", | ||
flags=[BIND_MOUNT_OPTIONS] | ||
) | ||
], | ||
extra_environment_variables={ | ||
"MODEL_NAME": f"{MODEL_NAME}", | ||
"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
Oops, something went wrong.