JunchuanYu commited on
Commit
7f2c6b5
1 Parent(s): 99d0243

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +13 -12
run.py CHANGED
@@ -15,7 +15,8 @@ st.markdown("""
15
 
16
  # geemap.set_proxy(33210)
17
 
18
- row1_col1, row1_col2, row1_col3 = st.columns([6, 2,1])
 
19
 
20
  Map = geemap.Map()
21
 
@@ -49,18 +50,18 @@ def pred_mask(pred,threshold):
49
  water=mask.updateMask(mask.gt(0.5))
50
  return water
51
 
52
- with row1_col3:
53
- st.sidebar.title("About")
54
- st.sidebar.info(
55
- """
56
- 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:
57
- [GitHub](https://github.com/JunchuanYu) | [Zhihu](https://twitter.com/giswqs) .
58
 
59
- 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
60
- """
61
- )
62
- st.sidebar.title("Contect")
63
- st.sidebar.info("Email: jason.yu.mail@qq.com")
64
 
65
  with row1_col2:
66
 
 
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
  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