File size: 369 Bytes
adab139 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
st.title("Info")
with st.expander("ℹ️ - About this app", expanded=True):
st.write(
"""
- This app maps internal descriptions to the corresponding SBS codes.
- This model was developed from xxxxxxxx in HuggingFace, and fine-tuned on xxxxx (xxxx).
- The model uses the default pretrained tokenizer.
"""
) |