raymondlo84's picture
Update app.py
0b31eab
raw
history blame
321 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
from openvino.runtime import Core
devices = ie.available_devices
for device in devices:
device_name = ie.get_property(device, "FULL_DEVICE_NAME")
print(f"{device}: {device_name}")
st.write(f"{device}: {device_name}")