Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dine-in/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ endif
COMPOSE_FILE ?= docker-compose.yaml

# Version tag for registry images
TAG ?= 2026.0.0
export TAG = 2026.1.0-rc2

# Dine-In image configuration
DINEIN_IMAGE_NAME ?= intel/order-accuracy-dine-in
Expand Down
2 changes: 1 addition & 1 deletion export_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--extra-index-url "https://download.pytorch.org/whl/cpu"
optimum-intel@git+https://github.com/huggingface/optimum-intel.git@a484bc6ee1175bbe8868bb53d2c42ab4c4802aa6
accelerate==1.11.0
diffusers==0.35.2 # for image generation
diffusers==0.38.0 # for image generation
einops==0.8.1
nncf==2.19.0
numpy==2.2.6
Expand Down
2 changes: 1 addition & 1 deletion take-away/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM intel/dlstreamer:2026.1.0-ubuntu24-rc1.1
FROM intel/dlstreamer:2026.1.0-ubuntu24-rc2

USER root

Expand Down
2 changes: 1 addition & 1 deletion take-away/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ OOM_PROTECTION ?= 1
PERF_TOOLS_DIR ?= ../performance-tools/benchmark-scripts

# Version tag for registry images
TAG ?= 2026.0.0
export TAG ?= 2026.1.0-rc2

# Sample video for quick-start testing (orders 384 → 651 → 925)
# Hosted on the upstream repo's GitHub Releases. Override via env if needed:
Expand Down
10 changes: 5 additions & 5 deletions take-away/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ services:
# SINGLE Station (per-container): docker compose up -d --scale order-accuracy=4
# MULTI Station (multi-process in one container): Set SERVICE_MODE=parallel
order-accuracy:
image: intel/order-accuracy-take-away:2026.0.0
image: intel/order-accuracy-take-away:${TAG}
build:
context: .
args:
Expand Down Expand Up @@ -188,7 +188,7 @@ services:
- order-accuracy-net

frame-selector:
image: intel/order-accuracy-frame-selector:2026.0.0
image: intel/order-accuracy-frame-selector:${TAG}
build:
context: ./frame-selector-service
args:
Expand Down Expand Up @@ -236,7 +236,7 @@ services:
- order-accuracy-net

gradio-ui:
image: intel/order-accuracy-take-away-ui:2026.0.0
image: intel/order-accuracy-take-away-ui:${TAG}
build:
context: ./gradio-ui
args:
Expand Down Expand Up @@ -315,7 +315,7 @@ services:
# RTSP Streamer - On-demand video streaming via MediaMTX
# Streams start only when a GStreamer client connects — no sync needed.
rtsp-streamer:
image: intel/order-accuracy-take-away-rtsp:2026.0.0
image: intel/order-accuracy-take-away-rtsp:${TAG}
build:
context: ./rtsp-streamer
args:
Expand Down Expand Up @@ -348,7 +348,7 @@ services:
- order-accuracy-net

metrics-collector:
image: intel/retail-benchmark:2026.0.0
image: intel/retail-benchmark:${TAG}
container_name: metrics-collector
profiles:
- benchmark
Expand Down
2 changes: 1 addition & 1 deletion take-away/gradio-ui/gradio_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,7 @@ def _load_mode_status():
print("[Gradio] Starting Order Accuracy UI with Intel styling...")

# Enable queue for generator support with higher concurrency
demo.queue(concurrency_count=5, max_size=20)
demo.queue(default_concurrency_limit=5, max_size=20)

demo.launch(
server_name="0.0.0.0",
Expand Down
Loading