Ahmadkhan12 commited on
Commit
231be40
·
verified ·
1 Parent(s): a97188b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import cv2
2
  import numpy as np
3
- import onnxruntime as ort # Import onnxruntime for model inference
 
4
  import streamlit as st
5
  from PIL import Image
6
 
@@ -38,7 +39,9 @@ def predict_emotion_with_smile(image_input, face_landmarks=None):
38
 
39
  # Load ONNX model
40
  def load_model():
41
- model_path = '"onnx_model.onnx"' # Make sure to set the correct path
 
 
42
  emotion_model = ort.InferenceSession(model_path)
43
  return emotion_model
44
 
 
1
  import cv2
2
  import numpy as np
3
+ import os
4
+ import onnxruntime as ort
5
  import streamlit as st
6
  from PIL import Image
7
 
 
39
 
40
  # Load ONNX model
41
  def load_model():
42
+ model_path = 'onnx_model.onnx' # Make sure this is the correct path
43
+ if not os.path.exists(model_path):
44
+ raise FileNotFoundError(f"Model file {model_path} not found!")
45
  emotion_model = ort.InferenceSession(model_path)
46
  return emotion_model
47