Skip to content

Commit a525e3f

Browse files
authored
Merge pull request #2015 from Esri/jy-rvw-NER-support
update markdown syntax for nav headings and updated sentence to correct number
2 parents 919dd62 + b31476d commit a525e3f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

guide/14-deep-learning/how-named-entity-recognition-works.ipynb

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
"cell_type": "markdown",
5353
"metadata": {},
5454
"source": [
55-
"# Introduction\n",
55+
"## Introduction\n",
5656
"\n",
57-
"Geospatial data is not only available in the form of maps and feature/imagery layers, but also in form of unstructured text.\n"
57+
"Geospatial data is not only available in the form of maps and feature/imagery layers, but also in form of unstructured text."
5858
]
5959
},
6060
{
@@ -85,7 +85,7 @@
8585
"cell_type": "markdown",
8686
"metadata": {},
8787
"source": [
88-
"# Prerequisites\n",
88+
"## Prerequisites\n",
8989
"\n",
9090
"- **Data preparation** and **model training workflows** for entity extraction using `arcgis.learn` is based on [spaCy](https://spacy.io/usage/linguistic-features#named-entities) & [Hugging Face Transformers](https://huggingface.co/transformers/v3.0.2/index.html) libraries. A user can choose an appropriate backbone to train the model. \n",
9191
"- Refer to the section [Install deep learning dependencies of arcgis.learn module](https://developers.arcgis.com/python/guide/install-and-set-up/#Install-deep-learning-dependencies) for detailed explanation about deep learning dependencies.\n",
@@ -98,7 +98,7 @@
9898
"cell_type": "markdown",
9999
"metadata": {},
100100
"source": [
101-
"# EntityRecognizer Model Basics\n",
101+
"## EntityRecognizer Model Basics\n",
102102
"\n",
103103
"`EntityRecognizer` model in `arcgis.learn` can be created with either [Hugging Face Transformers](https://huggingface.co/transformers/v3.0.2/index.html) or with [spaCy's](https://spacy.io/) [EntityRecognizer](https://spacy.io/api/entityrecognizer) architecture."
104104
]
@@ -201,9 +201,9 @@
201201
"cell_type": "markdown",
202202
"metadata": {},
203203
"source": [
204-
"# Data preparation\n",
204+
"## Data preparation\n",
205205
"\n",
206-
"- **Entity Recognizer** can consume labeled training data in three different formats (csv, [ner_json](https://spacy.io/api/annotation#json-input), [IOB](https://spacy.io/api/annotation#iob) & [BILUO](https://spacy.io/api/annotation#biluo)).\n",
206+
"- **Entity Recognizer** can consume labeled training data in four different formats (csv, [ner_json](https://spacy.io/api/annotation#json-input), [IOB](https://spacy.io/api/annotation#iob) & [BILUO](https://spacy.io/api/annotation#biluo)).\n",
207207
"- Example structure for **csv** format:\n",
208208
" - Columns:\n",
209209
" - The CSV should include a `text` column.\n",
@@ -474,7 +474,7 @@
474474
"cell_type": "markdown",
475475
"metadata": {},
476476
"source": [
477-
"# EntityRecognizer model\n",
477+
"## EntityRecognizer model\n",
478478
"\n",
479479
"`EntityRecognizer` model in `arcgis.learn` can be used with [spaCy's](https://spacy.io/) [EntityRecognizer](https://spacy.io/api/entityrecognizer) backbone or with [Hugging Face Transformers](https://huggingface.co/transformers/v3.0.2/index.html) backbones. The model training and inferencing workflow is similar to computer vision models in `arcgis.learn`.\n",
480480
"\n",
@@ -1323,7 +1323,7 @@
13231323
"cell_type": "markdown",
13241324
"metadata": {},
13251325
"source": [
1326-
"# Visualize entities\n",
1326+
"## Visualize entities\n",
13271327
"\n",
13281328
"We can utilize SpaCy's named entity visualizer to check the model's prediction on new text one at a time."
13291329
]
@@ -1443,7 +1443,7 @@
14431443
"cell_type": "markdown",
14441444
"metadata": {},
14451445
"source": [
1446-
"# References"
1446+
"## References"
14471447
]
14481448
},
14491449
{
@@ -1482,7 +1482,7 @@
14821482
"name": "python",
14831483
"nbconvert_exporter": "python",
14841484
"pygments_lexer": "ipython3",
1485-
"version": "3.11.8"
1485+
"version": "3.11.0"
14861486
}
14871487
},
14881488
"nbformat": 4,

0 commit comments

Comments
 (0)