Skip to content

Commit

Permalink
chore: title and icon
Browse files Browse the repository at this point in the history
  • Loading branch information
itsDaiton committed Jul 2, 2024
1 parent 5b040e2 commit bd30fd1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
import matplotlib.pyplot as plt
from processing import process_text, render_entities, get_default_input, get_entity_colors, get_entity_label_examples

# Page configuration - https://docs.streamlit.io/library/api-reference/config
st.set_page_config(
page_title='Named Entity Visualizer',
page_icon='🔍',
)

# Load models only when necessary - https://docs.streamlit.io/library/advanced-features/caching
@st.cache_resource
def load_model(model):
Expand Down

0 comments on commit bd30fd1

Please sign in to comment.