Skip to content

Commit b8cad91

Browse files
authored
Merge branch 'master' into spacy
2 parents ebb7bda + 30cde13 commit b8cad91

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spacy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Natural Language Processing With spaCy in Python
22

3-
Corresponding code for ["Natural Language Processing With spaCy in Python"](https://realpython.com/natural-language-processing-with-spacy-in-python/)
3+
Corresponding code for the Real Python tutorial [Natural Language Processing With spaCy in Python](https://realpython.com/natural-language-processing-spacy-python/)
44

5-
All the examples from the article have been combined into one file. For the best experience use VS Code with the [Jupyter extension](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter). This uses the `# %%` token as a delimiter for separate cells, allowing you to run each cell one by one and inspect the output.
5+
All the examples from the tutorial have been combined into one file. For the best experience, use VS Code with the [Jupyter extension](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter). This uses the `# %%` token as a delimiter for separate cells, allowing you to run cells one by one and inspect the output.

spacy/examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def set_custom_boundaries(doc):
218218
).most_common(5)
219219
)
220220

221-
# %% Part of speech tagging
221+
# %% Part-of-speech tagging
222222

223223
for token in about_doc[:5]:
224224
print(
@@ -287,7 +287,7 @@ def preprocess_token(token):
287287

288288
print(complete_filtered_tokens)
289289

290-
# %% Rule based matching
290+
# %% Rule-based matching
291291

292292
matcher = Matcher(nlp.vocab)
293293

0 commit comments

Comments
 (0)