yachay commited on
Commit
11cc467
·
1 Parent(s): 160efbe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -106,8 +106,9 @@ example_texts = [
106
  # Streamlit interface
107
  st.title('GeoTagging using ByT5')
108
 
 
109
  for example in example_texts:
110
- if st.button(f"Use example: {example}"):
111
  set_example_text(example)
112
 
113
  # Get text input and update session state when it's modified
 
106
  # Streamlit interface
107
  st.title('GeoTagging using ByT5')
108
 
109
+ st.write('Examples:')
110
  for example in example_texts:
111
+ if st.button(f"{example}"):
112
  set_example_text(example)
113
 
114
  # Get text input and update session state when it's modified