User:Alice/Prototyping trim4: Difference between revisions
(→SpaCy) |
(→SpaCy) |
||
Line 3: | Line 3: | ||
I would like to train an NLP tool with language specific to recipe writing, so that it can output cooking instructions by mixing and matching various actions and ingredients. | I would like to train an NLP tool with language specific to recipe writing, so that it can output cooking instructions by mixing and matching various actions and ingredients. | ||
==[https://spacy.io/usage/spacy-101 SpaCy]== | ==[https://spacy.io/usage/spacy-101 SpaCy]== | ||
Spacy is an NLP library for Python that is supposed to make some things simpler (potentially easier than NLTK?), such as training, for instance. | |||
I have decided to give SpaCy a try, since I found working with NLTK a bit cumbersome at times. I also read [https://medium.com/@akankshamalhotra24/introduction-to-libraries-of-nlp-in-python-nltk-vs-spacy-42d7b2f128f2 this article] which compares the two, and SpaCy seems to be performing better speed-wise and not only. |
Revision as of 13:08, 30 September 2018
Natural Language Processing experiment with recipes
Idea
I would like to train an NLP tool with language specific to recipe writing, so that it can output cooking instructions by mixing and matching various actions and ingredients.
SpaCy
Spacy is an NLP library for Python that is supposed to make some things simpler (potentially easier than NLTK?), such as training, for instance. I have decided to give SpaCy a try, since I found working with NLTK a bit cumbersome at times. I also read this article which compares the two, and SpaCy seems to be performing better speed-wise and not only.