pmbrito commited on
Commit
c3cf717
1 Parent(s): e30c261

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -10,6 +10,7 @@ import streamlit as st
10
 
11
  img_path = None
12
  st.title('Semantic Segmentation using DPT')
 
13
  file_upload = st.file_uploader('Raw Input Image')
14
  image_path = st.selectbox(
15
  'Choose any one image for inference',
 
10
 
11
  img_path = None
12
  st.title('Semantic Segmentation using DPT')
13
+ st.write('The DPT model was proposed in Vision Transformers for Dense Prediction by René Ranftl, Alexey Bochkovskiy, Vladlen Koltun. DPT is a model that leverages the Vision Transformer (ViT) as backbone for dense prediction tasks like semantic segmentation and depth estimation.')
14
  file_upload = st.file_uploader('Raw Input Image')
15
  image_path = st.selectbox(
16
  'Choose any one image for inference',