Skip to content

No face recognition in new images #21651

Description

@SysTechIL

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

When uploading new images, the AntelopeV2 face recognition model does not detect any faces at all.
I expected the faces in the images to be recognized automatically.
Switching to the Buffalo_L model detects most faces correctly.
Even after running the Re-extract process, many faces still do not appear in the interface.

The OS that Immich Server is running on

VM Ubuntu 22.10 on HyperV

Version of Immich Server

1.140.1

Version of Immich Mobile App

1.140.1 build 220

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

No response

Your docker-compose.yml content

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    volumes:
      - immich_upload:/usr/src/app/upload
      - /mnt/immich-photos:/mnt/immich-photos
    env_file:
      - ./immich.env
    ports:
      - '2283:2283'
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false

  immich-machine-learning:
    container_name: immich_machine_learning
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    volumes:
      - model-cache:/cache
    env_file:
      - ./immich.env
    restart: always
    healthcheck:
      disable: false
  redis:
    container_name: immich_redis
    image: docker.io/valkey/valkey:8-bookworm@sha256:00000000
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:000000000
    env_file:
      - ./immich.env
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      - immich_postgres_data:/var/lib/postgresql/data
    shm_size: 128mb
    restart: always

volumes:
  immich_upload:
  immich_postgres_data:

Your .env content

DB_USERNAME=immich
DB_PASSWORD=Password
DB_HOST=immich_postgres
DB_PORT=5432
DB_DATABASE_NAME=immich
GEMINI_API_KEY=00000000000

Reproduction steps

  1. Upload new images to Immich.
  2. Select the AntelopeV2 face recognition model.
  3. Run the Re-extract process.
  4. Observe that no faces are detected in the interface.

Relevant log output

Additional information

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    Projects

    Status
    Done

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions