Skip to content
Discussion options

You must be logged in to vote

The error you're encountering (TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType) indicates that the model_path is becoming None when the OpenVINO detector process starts(1).

Based on the Frigate documentation, your configuration structure is incorrect. The model section should be at the top level of your config, not nested under the detectors.ov section(1)(2).

Here's the corrected configuration:

detectors:
  ov:
    type: openvino
    device: GPU

model:
  width: 300
  height: 300
  input_tensor: nhwc
  input_pixel_format: bgr
  path: /openvino-model/ssdlite_mobilenet_v2.xml
  labelmap_path: /openvino-model/coco_91cl_bkgr.txt

(1)(2)

The model configurati…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by loloviolo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment