Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix single quote character #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions episodes/03-text-analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@
:::::::::::::::: solution

A: You can use the following code to get information about each one of the labels. For example, we want to know what GPE represents here. We can use *explain()* to get the required information:
spacy.explain(GPE)
spacy.explain('GPE')

```python

spacy.explain(GPE)
spacy.explain('GPE')

```

Expand Down Expand Up @@ -282,11 +282,11 @@

Teamwork: To better understand this and to find the connection between concepts we have learned so far, let’s match the following terms to their brief definitions:

![image](https://github.com/qcif-training/intro_nlp_lmm_v1.0/assets/45458783/2be22cfb-4ed8-4f65-85bf-31962a40835f)

Check warning on line 285 in episodes/03-text-analysis.md

View workflow job for this annotation

GitHub Actions / Build markdown source files if valid


:::::::::::::::: solution

![image](https://github.com/qcif-training/intro_nlp_lmm_v1.0/assets/45458783/d7d9a9a4-c2cb-4f37-bc6c-7b2f99133fe3)

Check warning on line 289 in episodes/03-text-analysis.md

View workflow job for this annotation

GitHub Actions / Build markdown source files if valid


:::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::::::
Expand Down
Loading