Bug in https://course.spacy.io/en/chapter1 #7551
-
On URL: https://course.spacy.io/en/chapter1 In section 12 "Writing match patterns", part 2, my solution is marked correct, but I expected THREE results not just TWO. The automatic grader thinks TWO is correct. It appears that This problem is probably due to the course being based on Spacy 2.x and not the newer Spacy 3.0 My solution:
OUTPUT:
When I tried it on my system with Spacy 3.0, I get this output:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is not really a bug, it's just an issue with the accuracy of the POS tagger. Some degree of errors with the models are inevitable; see this issue for some notes on that. This case is a bit unfortunate but as you note it seems it's been fixed in v3. Your answer is marked correct because your code is consistent with spaCy's predictions, which is all the answer-checking code has access to. |
Beta Was this translation helpful? Give feedback.
This is not really a bug, it's just an issue with the accuracy of the POS tagger. Some degree of errors with the models are inevitable; see this issue for some notes on that. This case is a bit unfortunate but as you note it seems it's been fixed in v3.
Your answer is marked correct because your code is consistent with spaCy's predictions, which is all the answer-checking code has access to.