File size: 538 Bytes
f525638
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st

st.title("Info") 

with st.expander("ℹ️ - About this app", expanded=True):

    st.write(
        """     
-   This app performs named entity recognition for medical entities. 
-   myDemo model was developed from dslim/distilbert-NER (a general NER model with 66M parameters) in HuggingFace, and fine-tuned on singh-aditya/MACCROBAT_biomedical_ner (a dataset annotated with medical entity labels in 41 categories). 
-   The model uses the default pretrained tokenizer in dslim/distilbert-NER.
       """
    )