Spaces:
Build error
Build error
File size: 668 Bytes
4def895 05da2c4 4b21165 7ba6cc4 4def895 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: pyronear-wildfire-detection
ports:
- "7860:7860"
environment:
STREAMLIT_SERVER_ADDRESS: "0.0.0.0"
STREAMLIT_SERVER_PORT: "7860"
STREAMLIT_BROWSER_GATHER_USAGE_STATS: "false"
ENABLE_MOTION_SEGMENTATION: "0"
FAST_N_SAMPLES: "12"
INFER_BATCH_SIZE: "16"
MODEL_IMGSZ: "1024"
MAX_INFER_FRAMES_PER_SPLIT: "12"
MIN_MAIN_MATCH_ABS: "3"
MIN_MAIN_MATCH_RATIO: "0.20"
ORT_PROVIDERS: "CPUExecutionProvider"
ORT_INTRA_OP_NUM_THREADS: "8"
ORT_INTER_OP_NUM_THREADS: "1"
restart: unless-stopped
|