Renamed GENRE to REGEN
Browse files
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 = "
|
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 |
|