Spaces:
Runtime error
Runtime error
shashichilappagari
commited on
Commit
•
4fb2279
1
Parent(s):
3160d15
Update app.py
Browse files
app.py
CHANGED
@@ -33,4 +33,4 @@ with st.form("model_form"):
|
|
33 |
else:
|
34 |
st.image(predictions.image_overlay,caption='Image with Bounding Boxes/Keypoints')
|
35 |
stats=model.time_stats()
|
36 |
-
st.write(stats["CoreInferenceDuration_ms"].avg)
|
|
|
33 |
else:
|
34 |
st.image(predictions.image_overlay,caption='Image with Bounding Boxes/Keypoints')
|
35 |
stats=model.time_stats()
|
36 |
+
st.write('Expected Frames per second for the model= ', 1000.0/stats["CoreInferenceDuration_ms"].avg)
|