Last active
July 29, 2024 21:03
-
-
Save aparrish/f21f6abbf2367e8eb23438558207e1c3 to your computer and use it in GitHub Desktop.
NLP Concepts with spaCy. Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
That was great but I'd like to know how more nuanced software is built using spacy, are these all the fundamentals? I'd like to develop a context free grammar for financial news reporting, how can i get there?
Great stuff..!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great tutorial, but why limit it to Python 2, especially in NLP?
It appears that you could add
from __future__ import print_function
and add the appropriate parentheses, and then this code would work in both Python 2 and 3.