Victoria Slocum commited on
Commit
fd44dc1
1 Parent(s): 1109407

wording changes

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -182,7 +182,7 @@ with demo:
182
  gr.Markdown(
183
  "## [Dependency Parser](https://spacy.io/usage/visualizers#dep)")
184
  gr.Markdown(
185
- "The dependency visualizer, `dep`, shows part-of-speech tags and syntactic dependencies.")
186
  with gr.Row():
187
  with gr.Column():
188
  col_punct = gr.Checkbox(
@@ -207,7 +207,7 @@ with demo:
207
  gr.Markdown(
208
  "## [Entity Recognizer](https://spacy.io/usage/visualizers#ent)")
209
  gr.Markdown(
210
- "The entity visualizer, `ent`, highlights named entities and their labels in a text.")
211
  entity_input = gr.CheckboxGroup(
212
  DEFAULT_ENTS, value=DEFAULT_ENTS)
213
  entity_output = gr.HTML(value=entity(
@@ -218,7 +218,7 @@ with demo:
218
  gr.Markdown(
219
  "## [Token Properties](https://spacy.io/usage/linguistic-features)")
220
  gr.Markdown(
221
- "When you put in raw text to spaCy, it returns a `Doc` object with different linguistic features")
222
  with gr.Column():
223
  with gr.Row():
224
  with gr.Column():
@@ -254,7 +254,7 @@ with demo:
254
  gr.Markdown(
255
  "## [Spans](https://spacy.io/usage/visualizers#span)")
256
  gr.Markdown(
257
- "The span visualizer, `span`, highlights overlapping spans in a text.")
258
  with gr.Column():
259
  with gr.Row():
260
  with gr.Column():
 
182
  gr.Markdown(
183
  "## [Dependency Parser](https://spacy.io/usage/visualizers#dep)")
184
  gr.Markdown(
185
+ "The dependency visualizer shows part-of-speech tags and syntactic dependencies.")
186
  with gr.Row():
187
  with gr.Column():
188
  col_punct = gr.Checkbox(
 
207
  gr.Markdown(
208
  "## [Entity Recognizer](https://spacy.io/usage/visualizers#ent)")
209
  gr.Markdown(
210
+ "The entity visualizer highlights named entities and their labels in a text.")
211
  entity_input = gr.CheckboxGroup(
212
  DEFAULT_ENTS, value=DEFAULT_ENTS)
213
  entity_output = gr.HTML(value=entity(
 
218
  gr.Markdown(
219
  "## [Token Properties](https://spacy.io/usage/linguistic-features)")
220
  gr.Markdown(
221
+ "When you put in raw text to spaCy, it returns a Doc object with different linguistic features")
222
  with gr.Column():
223
  with gr.Row():
224
  with gr.Column():
 
254
  gr.Markdown(
255
  "## [Spans](https://spacy.io/usage/visualizers#span)")
256
  gr.Markdown(
257
+ "The span visualizer highlights overlapping spans in a text.")
258
  with gr.Column():
259
  with gr.Row():
260
  with gr.Column():