Skip to content

Commit

Permalink
Fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
ines committed Sep 19, 2020
1 parent 425039f commit 263e1f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacy_streamlit/visualizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ def visualize(
model_names = list(models.keys())

spacy_model = st.sidebar.selectbox(
"Pipeline",
"Model",
model_names,
key=f"{key}_visualize_models",
format_func=format_func,
)
model_load_state = st.info(f"Loading pipeline '{spacy_model}'...")
model_load_state = st.info(f"Loading model '{spacy_model}'...")
nlp = load_model(spacy_model)
model_load_state.empty()

Expand Down

0 comments on commit 263e1f0

Please sign in to comment.