Spaces:
Runtime error
Runtime error
Commit ·
efacc5b
1
Parent(s): 0722f3d
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,6 +4,8 @@ x = st.slider('Select a value')
|
|
| 4 |
st.write(x, 'squared is', x * x)
|
| 5 |
|
| 6 |
from openvino.runtime import Core
|
|
|
|
|
|
|
| 7 |
devices = ie.available_devices
|
| 8 |
|
| 9 |
for device in devices:
|
|
|
|
| 4 |
st.write(x, 'squared is', x * x)
|
| 5 |
|
| 6 |
from openvino.runtime import Core
|
| 7 |
+
|
| 8 |
+
ie = Core()
|
| 9 |
devices = ie.available_devices
|
| 10 |
|
| 11 |
for device in devices:
|