Daniel Cerda Escobar
commited on
Commit
Β·
76a2d16
1
Parent(s):
96b4bfb
Update app file
Browse files
app.py
CHANGED
@@ -12,28 +12,18 @@ st.caption('Developed by Deep Drawings Co.')
|
|
12 |
|
13 |
st.write('##')
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
# '''
|
20 |
-
# 1. Upload your P&ID or Select Test Diagrams
|
21 |
-
# 2. Set Confidence Threshold
|
22 |
-
# 3. Press to Perform Inference π
|
23 |
-
# 4. Visualize Model Predictions
|
24 |
-
# '''
|
25 |
-
# )
|
26 |
-
|
27 |
-
with st.sidebar:
|
28 |
-
st.markdown(
|
29 |
'''
|
30 |
1. Upload your P&ID or Select Test Diagrams
|
31 |
2. Set Confidence Threshold
|
32 |
3. Press to Perform Inference π
|
33 |
4. Visualize Model Predictions
|
34 |
-
'''
|
35 |
-
|
36 |
-
|
37 |
st.write('##')
|
38 |
|
39 |
col1, col2, col3 = st.columns([10, 10, 10])
|
|
|
12 |
|
13 |
st.write('##')
|
14 |
|
15 |
+
col1, col2, col3 = st.columns([10, 10, 10])
|
16 |
+
with col2:
|
17 |
+
with st.expander("Usage"):
|
18 |
+
st.markdown(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
'''
|
20 |
1. Upload your P&ID or Select Test Diagrams
|
21 |
2. Set Confidence Threshold
|
22 |
3. Press to Perform Inference π
|
23 |
4. Visualize Model Predictions
|
24 |
+
'''
|
25 |
+
)
|
26 |
+
|
27 |
st.write('##')
|
28 |
|
29 |
col1, col2, col3 = st.columns([10, 10, 10])
|