spacy-course icon indicating copy to clipboard operation
spacy-course copied to clipboard

👩‍🏫 Advanced NLP with spaCy: A free online course

Results 14 spacy-course issues
Sort by recently updated
recently updated
newest added

Hello spaCy Community, 💥 **I would love to work on Turkish translation in this beautiful course. Any ideas about that? :)**

## How to reproduce the behaviour ## Your Environment * Operating System: * Python Version Used: * spaCy Version Used: * Environment Information:

The sentence is just splited by character. ``` # 导入spacy并创建中文nlp对象 import spacy nlp = spacy.blank("zh") # 处理文本 doc = nlp("我喜欢老虎和狮子。") # 遍历打印doc中的内容 for i, token in enumerate(doc): print(i, token.text) #...

Hello, can you please indicate how to change the code below to align with Spacy's current v3.2.x? Thanks for your support, Achilleas ``` import spacy import random import json with...

Data Structures(2): Doc, Span and Token: https://course.spacy.io/en/chapter2 Section 2 on the Span Object The [diagram] says Span(1,4). The slice from index 1 - 4 is highlighted in yellow. while it...

Hi, I've been doing chapters 1 and 2 of the course today and have been having repeated errors where the code cells either fail in their connection (giving an error...

Hi! I recently took this course on DataCamp and did manage to run the code in the exercise. For future references, I copied the exercise and the answer to my...

Originally reported in my comment here https://github.com/ines/course-starter-python/issues/4#issuecomment-737010614, but I realized that this is a more general issue that also affects the spacy course, not just the Python course starter. It...

## Phenomenon There is the output of the matches from the matcher at [chapter1_03_rule-based-matching.md Matching lexical attributes](https://github.com/ines/spacy-course/blob/master/chapters/en/slides/chapter1_03_rule-based-matching.md#matching-lexical-attributes), but the implementation to get it is missing. ```py doc = nlp("2018 FIFA...

Hi, this project is indeed very nice. What about implementing an "export to pdf" functionality for slides deck? I feel that it might be something useful to make teaching resources...

enhancement
ui / ux