Spaces:
Sleeping
Sleeping
Daniel Cerda Escobar
commited on
Commit
Β·
ec587b4
1
Parent(s):
931429b
Update app file
Browse files
app.py
CHANGED
@@ -7,17 +7,20 @@ st.set_page_config(
|
|
7 |
)
|
8 |
|
9 |
st.title('P&ID Object Detection App')
|
10 |
-
st.subheader('
|
11 |
st.caption('Developed by Deep Drawings Co.')
|
12 |
|
13 |
st.write('##')
|
14 |
|
15 |
-
|
16 |
-
|
|
|
|
|
17 |
'''
|
18 |
1. Upload your P&ID or select example drawings
|
19 |
2. Set confidence threshold
|
20 |
3. Press to perform prediction π
|
21 |
4. Visualize output results
|
22 |
'''
|
23 |
-
)
|
|
|
|
7 |
)
|
8 |
|
9 |
st.title('P&ID Object Detection App')
|
10 |
+
st.subheader(' Pretrained model able to identify valves and pumps', divider='rainbow')
|
11 |
st.caption('Developed by Deep Drawings Co.')
|
12 |
|
13 |
st.write('##')
|
14 |
|
15 |
+
col1, col2, col3 = st.columns([5, 10, 5])
|
16 |
+
with col2:
|
17 |
+
with st.expander("Usage"):
|
18 |
+
st.markdown(
|
19 |
'''
|
20 |
1. Upload your P&ID or select example drawings
|
21 |
2. Set confidence threshold
|
22 |
3. Press to perform prediction π
|
23 |
4. Visualize output results
|
24 |
'''
|
25 |
+
)
|
26 |
+
|