mediNER / pages /about.py
georad's picture
Upload 17 files
ae2269f verified
raw
history blame contribute delete
538 Bytes
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.
"""
)