JunchuanYu commited on
Commit
0b6b42c
1 Parent(s): 7f2c6b5

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +13 -13
run.py CHANGED
@@ -15,8 +15,8 @@ st.markdown("""
15
 
16
  # geemap.set_proxy(33210)
17
 
18
- # row1_col1, row1_col2, row1_col3 = st.columns([6, 1,1])
19
- row1_col1, row1_col2 = st.columns([7, 2])
20
 
21
  Map = geemap.Map()
22
 
@@ -50,18 +50,18 @@ def pred_mask(pred,threshold):
50
  water=mask.updateMask(mask.gt(0.5))
51
  return water
52
 
53
- # with row1_col3:
54
- # st.sidebar.title("About")
55
- # st.sidebar.info(
56
- # """
57
- # This web [app](https://junchuanyu-ldtp.hf.space) is maintained by [Junchuan Yu](https://junchuanyu.netlify.app/posts/). You can follow me on social media:
58
- # [GitHub](https://github.com/JunchuanYu) | [Zhihu](https://twitter.com/giswqs) .
59
 
60
- # Sentinel-2 is used as the data, and 8-band images are used as training data (B4, B3, B2, B8, B11, B12, MNDWI, SDWI). The model uses a multi-scale deep neural network model based on transfer learning, and is implemented using otop technology
61
- # """
62
- # )
63
- # st.sidebar.title("Contect")
64
- # st.sidebar.info("Email: jason.yu.mail@qq.com")
65
 
66
  with row1_col2:
67
 
 
15
 
16
  # geemap.set_proxy(33210)
17
 
18
+ row1_col1, row1_col2, row1_col3 = st.columns([6, 2,1])
19
+ # row1_col1, row1_col2 = st.columns([7, 2])
20
 
21
  Map = geemap.Map()
22
 
 
50
  water=mask.updateMask(mask.gt(0.5))
51
  return water
52
 
53
+ with row1_col3:
54
+ st.sidebar.title("About")
55
+ st.sidebar.info(
56
+ """
57
+ This web [app](https://junchuanyu-ldtp.hf.space) is maintained by [Junchuan Yu](https://junchuanyu.netlify.app/posts/). You can follow me on social media:
58
+ [GitHub](https://github.com/JunchuanYu) | [Zhihu](https://twitter.com/giswqs) .
59
 
60
+ Sentinel-2 is used as the data, and 8-band images are used as training data (B4, B3, B2, B8, B11, B12, MNDWI, SDWI). The model uses a multi-scale deep neural network model based on transfer learning, and is implemented using otop technology
61
+ """
62
+ )
63
+ st.sidebar.title("Contect")
64
+ st.sidebar.info("Email: jason.yu.mail@qq.com")
65
 
66
  with row1_col2:
67