Skip to content
Discussion options

You must be logged in to vote

Face recognition requires a CPU with AVX + AVX2 instructions to run.(1) The Intel J4125 processor in your Mini PC does not support AVX2 instructions - it only supports AVX. This is likely why face recognition stopped working after the update.

Looking at your logs, I can see the system is attempting to load the face recognition models:

INFO: Created TensorFlow Lite XNNPACK delegate for CPU.

(1)

This indicates the face recognition embedding models are trying to run on CPU, but without AVX2 support, they may fail silently or not function correctly.

The small model is optimized for efficiency and runs on the CPU, but still requires AVX + AVX2.(1) The large model requires an integrated or dis…

Replies: 2 comments 10 replies

Comment options

You must be logged in to vote
7 replies
@HolgerM1
Comment options

@hawkeye217
Comment options

@HolgerM1
Comment options

@hawkeye217
Comment options

@HolgerM1
Comment options

Answer selected by HolgerM1
Comment options

You must be logged in to vote
3 replies
@hawkeye217
Comment options

@mrl4x
Comment options

@10zindraws
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment