Skip to content

Commit bd30fd1

Browse files
committed
chore: title and icon
1 parent 5b040e2 commit bd30fd1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app.py

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
import matplotlib.pyplot as plt
55
from processing import process_text, render_entities, get_default_input, get_entity_colors, get_entity_label_examples
66

7+
# Page configuration - https://docs.streamlit.io/library/api-reference/config
8+
st.set_page_config(
9+
page_title='Named Entity Visualizer',
10+
page_icon='🔍',
11+
)
12+
713
# Load models only when necessary - https://docs.streamlit.io/library/advanced-features/caching
814
@st.cache_resource
915
def load_model(model):

0 commit comments

Comments
 (0)