Daniel Cerda Escobar commited on
Commit
a3cfe41
·
1 Parent(s): 15bfc71

Update app file

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -7,7 +7,7 @@ st.set_page_config(
7
  )
8
 
9
  st.title('P&ID Object Detection App')
10
- st.subheader(' Powerful deep learning model to identify **valves** and **pumps**', divider='rainbow')
11
  st.caption('Developed by Deep Drawings Co.')
12
 
13
  st.write('##')
@@ -23,4 +23,14 @@ with col1:
23
  4. Visualize Model Predictions
24
  '''
25
  )
26
-
 
 
 
 
 
 
 
 
 
 
 
7
  )
8
 
9
  st.title('P&ID Object Detection App')
10
+ st.subheader(' Deep learning model able to identify valves and pumps', divider='rainbow')
11
  st.caption('Developed by Deep Drawings Co.')
12
 
13
  st.write('##')
 
23
  4. Visualize Model Predictions
24
  '''
25
  )
26
+
27
+ st.write('##')
28
+
29
+ col1, col2, col3 = st.columns([10, 10, 10])
30
+ with col1:
31
+ st.markdown(f"##### Upload your File:")
32
+
33
+ # set input image by upload
34
+ image_file = st.file_uploader(
35
+ "Upload your diagram:", type=["pdf"]
36
+ )