ajitrajasekharan commited on
Commit
1e5d7d3
·
1 Parent(s): 6b14017

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -126,7 +126,7 @@ def main():
126
  st.write("This app can be used to examine both fill-mask predictions as well as the neighborhood of CLS vector")
127
  st.write(" - To examine fill-mask predictions, enter the token [MASK] or <mask> in a sentence")
128
  st.write(" - To examine just the [CLS] vector, enter a word/phrase or sentence. Example: eGFR or EGFR or non small cell lung cancer")
129
- st.write("Pretrained BERT models from three domains (biomedical,PHI [person,location,org, etc.], and legal) are listed on the left. Their performance on domain specific sentences reveal both their strength and weakness.")
130
 
131
 
132
 
@@ -166,7 +166,9 @@ def main():
166
  st.error("Some error occurred during loading" + str(e))
167
  st.stop()
168
 
169
-
 
 
170
 
171
 
172
 
 
126
  st.write("This app can be used to examine both fill-mask predictions as well as the neighborhood of CLS vector")
127
  st.write(" - To examine fill-mask predictions, enter the token [MASK] or <mask> in a sentence")
128
  st.write(" - To examine just the [CLS] vector, enter a word/phrase or sentence. Example: eGFR or EGFR or non small cell lung cancer")
129
+ st.write("Pretrained BERT models from three domains (biomedical,PHI [person,location,org, etc.], and legal) are listed below. Their performance on domain specific sentences reveal both their strength and weakness.")
130
 
131
 
132
 
 
166
  st.error("Some error occurred during loading" + str(e))
167
  st.stop()
168
 
169
+ st.markdown("""
170
+ <small style="font-size:16px; color: #7f7f7f">Link to post <a href="https://ajitrajasekharan.github.io/2021/01/02/my-first-post.html">describing this approach</a></small>
171
+ """, unsafe_allow_html=True)
172
 
173
 
174