[Config Support]: Face recognition stopped working after the update from 0.16.x to 0.17.x #22771
Replies: 2 comments 10 replies
|
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: 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 Your options are:
face_recognition:
enabled: falseThe Additionally, your logs show the detection process getting stuck and restarting, which could be related to the USB Coral becoming unresponsive. Some users have found that switching to a different USB cable can help with stability.(3) 📚 Sources: Have another question? Just tag @inkeep. |
|
That's really strange. After deactivating the semantic search, face recognition is working again. |

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:
(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
smallmodel is optimized for efficiency and runs on the CPU, but still requires AVX + AVX2.(1) Thelargemodel requires an integrated or dis…