Update Main.py
Browse files
Main.py
CHANGED
@@ -17,3 +17,9 @@ images = pipe(
|
|
17 |
).images
|
18 |
|
19 |
gif_path = export_to_gif(images, "shark_3d.gif")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
).images
|
18 |
|
19 |
gif_path = export_to_gif(images, "shark_3d.gif")
|
20 |
+
|
21 |
+
|
22 |
+
import streamlit as st
|
23 |
+
|
24 |
+
x = st.slider('Select a value')
|
25 |
+
st.write(x, 'squared is', x * x)
|