File size: 321 Bytes
5cc6f9a
 
 
 
e2b5c2b
 
 
 
 
 
 
0b31eab
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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}")