Spaces:
Sleeping
Sleeping
Page emoji and layout prefixes as filenames
Browse files
pages/{Upload_An_Image.py β 1_πΎ_Upload_An_Image.py}
RENAMED
File without changes
|
pages/{Capture_Image.py β 2_π·_Capture_Image.py}
RENAMED
File without changes
|
π€_Hello.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
if __name__ == "__main__":
|
4 |
+
# set page configurations and display/annotation options
|
5 |
+
st.set_page_config(
|
6 |
+
page_title="Circuit Sketch Recognizer",
|
7 |
+
layout="wide"
|
8 |
+
)
|
9 |
+
|
10 |
+
st.title("Circuit Sketch Recognition")
|
11 |
+
col1, col2 = st.columns(2)
|
12 |
+
with col1:
|
13 |
+
st.image('example1.jpg', use_column_width=True, caption='Example 1')
|
14 |
+
with col2:
|
15 |
+
st.image('example2.jpg', use_column_width=True, caption='Example 2')
|