fixed grammatical errors
Browse files- pages/about.py +5 -2
- pages/scoreboard.py +1 -1
pages/about.py
CHANGED
@@ -18,7 +18,7 @@ st.markdown(
|
|
18 |
|
19 |
st.markdown(
|
20 |
"""
|
21 |
-
* The Arena allows a user to record
|
22 |
)
|
23 |
|
24 |
st.markdown(
|
@@ -29,6 +29,9 @@ st.markdown(
|
|
29 |
""" * The Scoreboard shows the performance of the models in the Arena. The user can see the overall performance of the models, the model with the highest win rate, and the model with the most appearances. The user can also see the win rates of each model, as well as the appearance distribution of each model."""
|
30 |
)
|
31 |
|
|
|
|
|
|
|
32 |
st.markdown(
|
33 |
"## Contact Us"
|
34 |
)
|
@@ -38,7 +41,7 @@ st.markdown(
|
|
38 |
)
|
39 |
|
40 |
with st.form("login_form"):
|
41 |
-
st.subheader("Please
|
42 |
|
43 |
email = st.text_input("Email")
|
44 |
|
|
|
18 |
|
19 |
st.markdown(
|
20 |
"""
|
21 |
+
* The Arena allows a user to record or choose a random audio, in which speech will be recognized by two randomly selected models. After listening to the audio, and evaluating the output from both the models, the user can vote on which transcription they prefer. Due to the risks of human bias and abuse, model names are revealed only after a vote is submitted."""
|
22 |
)
|
23 |
|
24 |
st.markdown(
|
|
|
29 |
""" * The Scoreboard shows the performance of the models in the Arena. The user can see the overall performance of the models, the model with the highest win rate, and the model with the most appearances. The user can also see the win rates of each model, as well as the appearance distribution of each model."""
|
30 |
)
|
31 |
|
32 |
+
st.markdown("## Future Scope")
|
33 |
+
st.markdown("""* Add more languages""")
|
34 |
+
|
35 |
st.markdown(
|
36 |
"## Contact Us"
|
37 |
)
|
|
|
41 |
)
|
42 |
|
43 |
with st.form("login_form"):
|
44 |
+
st.subheader("Please enter your email")
|
45 |
|
46 |
email = st.text_input("Email")
|
47 |
|
pages/scoreboard.py
CHANGED
@@ -291,7 +291,7 @@ if __name__ == "__main__":
|
|
291 |
dashboard()
|
292 |
else:
|
293 |
with st.form("contact_us_form"):
|
294 |
-
st.subheader("Please
|
295 |
|
296 |
email = st.text_input("Email")
|
297 |
|
|
|
291 |
dashboard()
|
292 |
else:
|
293 |
with st.form("contact_us_form"):
|
294 |
+
st.subheader("Please enter your email to view the scoreboard")
|
295 |
|
296 |
email = st.text_input("Email")
|
297 |
|