Victoria Slocum commited on
Commit
15050a4
·
1 Parent(s): 2d3407c

Fix periods

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -176,7 +176,7 @@ with demo:
176
  with gr.Column():
177
  gr.Markdown("# Pipeline Visualizer")
178
  gr.Markdown(
179
- "### Visualize parts of the spaCy pipeline in an interactive demo.")
180
  with gr.Column():
181
  gr.Image("pipeline.svg")
182
  with gr.Box():
@@ -206,7 +206,7 @@ with demo:
206
  gr.Markdown(
207
  "## [Dependency Parser](https://spacy.io/usage/visualizers#dep)")
208
  gr.Markdown(
209
- "The dependency visualizer shows part-of-speech tags and syntactic dependencies.")
210
  with gr.Row():
211
  with gr.Column():
212
  col_punct = gr.Checkbox(
@@ -237,7 +237,7 @@ with demo:
237
  gr.Markdown(
238
  "## [Entity Recognizer](https://spacy.io/usage/visualizers#ent)")
239
  gr.Markdown(
240
- "The entity visualizer highlights named entities and their labels in a text.")
241
  ent_input = gr.CheckboxGroup(
242
  DEFAULT_ENTS, value=DEFAULT_ENTS)
243
  ent_output = gr.HTML(value=entity(
@@ -292,7 +292,7 @@ with demo:
292
  gr.Markdown(
293
  "## [Spans](https://spacy.io/usage/visualizers#span)")
294
  gr.Markdown(
295
- "The span visualizer highlights overlapping spans in a text.")
296
 
297
  with gr.Row():
298
  with gr.Column():
 
176
  with gr.Column():
177
  gr.Markdown("# Pipeline Visualizer")
178
  gr.Markdown(
179
+ "### Visualize parts of the spaCy pipeline in an interactive demo")
180
  with gr.Column():
181
  gr.Image("pipeline.svg")
182
  with gr.Box():
 
206
  gr.Markdown(
207
  "## [Dependency Parser](https://spacy.io/usage/visualizers#dep)")
208
  gr.Markdown(
209
+ "The dependency visualizer shows part-of-speech tags and syntactic dependencies")
210
  with gr.Row():
211
  with gr.Column():
212
  col_punct = gr.Checkbox(
 
237
  gr.Markdown(
238
  "## [Entity Recognizer](https://spacy.io/usage/visualizers#ent)")
239
  gr.Markdown(
240
+ "The entity visualizer highlights named entities and their labels in a text")
241
  ent_input = gr.CheckboxGroup(
242
  DEFAULT_ENTS, value=DEFAULT_ENTS)
243
  ent_output = gr.HTML(value=entity(
 
292
  gr.Markdown(
293
  "## [Spans](https://spacy.io/usage/visualizers#span)")
294
  gr.Markdown(
295
+ "The span visualizer highlights overlapping spans in a text")
296
 
297
  with gr.Row():
298
  with gr.Column():