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