nklimov commited on
Commit
db1c7f1
1 Parent(s): c01bfc4

Replace age model

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,10 +19,10 @@ face_model_zoo_url = "https://cs.degirum.com/degirum/ultralytics_v6"
19
  face_model_name = "yolov8n_relu6_face--640x640_quant_n2x_orca1_1"
20
 
21
  # age_model_zoo_url: URL/path for the age model zoo.
22
- age_model_zoo_url = "https://cs.degirum.com/degirum/sandbox"
23
 
24
  # age_model_name: Name of the model for age detection.
25
- age_model_name = "yolov8s_regress_age_silu_utkface--256x256_float_openvino_cpu_1"
26
 
27
  # Connect to AI inference engine getting token from env.ini file
28
  face_zoo = dg.connect(hw_location, face_model_zoo_url, token=st.secrets["DG_TOKEN"])
 
19
  face_model_name = "yolov8n_relu6_face--640x640_quant_n2x_orca1_1"
20
 
21
  # age_model_zoo_url: URL/path for the age model zoo.
22
+ age_model_zoo_url = "https://cs.degirum.com/degirum/openvino"
23
 
24
  # age_model_name: Name of the model for age detection.
25
+ age_model_name = "yolov8n_relu6_age--256x256_float_openvino_cpu_1"
26
 
27
  # Connect to AI inference engine getting token from env.ini file
28
  face_zoo = dg.connect(hw_location, face_model_zoo_url, token=st.secrets["DG_TOKEN"])