EdBianchi commited on
Commit
11db43b
1 Parent(s): 48afa5f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -31,7 +31,7 @@ def main():
31
  st.sidebar.header("How it works?")
32
  st.sidebar.write("""Based on the work presented in the paper 'Bayesian inference of the climbing grade scale' available on [ArXiv](https://arxiv.org/abs/2111.08140)""")
33
 
34
- st.sidebar.write("""\n\n [Here you can find a table for grade conversion](https://www.thecrag.com/en/article/grades)""")
35
 
36
  st.sidebar.header("\n\nOriginal Paper Citation:")
37
  st.sidebar.text("""
@@ -45,6 +45,8 @@ def main():
45
  }
46
  """)
47
 
 
 
48
  st.write("Select your current climbing grade and the grade of the route you plan to climb. Grades are expressed following the French system.")
49
  current_grade_french = st.selectbox("Climber's Current Grade (French)", options=list(french_to_ewbank.keys()))
50
  route_grade_french = st.selectbox("Route Grade (French)", options=list(french_to_ewbank.keys()))
 
31
  st.sidebar.header("How it works?")
32
  st.sidebar.write("""Based on the work presented in the paper 'Bayesian inference of the climbing grade scale' available on [ArXiv](https://arxiv.org/abs/2111.08140)""")
33
 
34
+ st.sidebar.write("""\n\n[Here you can find a table for grade conversion](https://www.thecrag.com/en/article/grades)""")
35
 
36
  st.sidebar.header("\n\nOriginal Paper Citation:")
37
  st.sidebar.text("""
 
45
  }
46
  """)
47
 
48
+ st.sidebar.write("""\n\nDeveloped by Edoardo Bianchi""")
49
+
50
  st.write("Select your current climbing grade and the grade of the route you plan to climb. Grades are expressed following the French system.")
51
  current_grade_french = st.selectbox("Climber's Current Grade (French)", options=list(french_to_ewbank.keys()))
52
  route_grade_french = st.selectbox("Route Grade (French)", options=list(french_to_ewbank.keys()))