marmg commited on
Commit
e55a05a
·
1 Parent(s): 23c26cc

Renamed GENRE to REGEN

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -72,8 +72,8 @@ selected_model = st.sidebar.selectbox("", linkers)
72
  ######## Main Page #########
73
 
74
  if selected_model == "REGEN":
75
- app_title = "GENRE Linker"
76
- app_description = "GENRE performs retrieval generating the unique entity name conditioned on the input text using constrained beam search to only generate valid identifiers."
77
  st.title(app_title)
78
  st.markdown("<h2>" + app_description + "</h2>", unsafe_allow_html=True)
79
 
 
72
  ######## Main Page #########
73
 
74
  if selected_model == "REGEN":
75
+ app_title = "REGEN Linker"
76
+ app_description = "REGEN is a T5 implementation of GENRE. It performs retrieval generating the unique entity name conditioned on the input text using constrained beam search to only generate valid identifiers."
77
  st.title(app_title)
78
  st.markdown("<h2>" + app_description + "</h2>", unsafe_allow_html=True)
79