Hi!
I have trained a Spacy NER model to identify recipe ingredients. Prodigy made this easy!
So if I have something like 3 large yellow onions then yellow onions is identified.
What should I now do with this model?
Here's my use case.
I have an AWS lambda function that will extract a full recipe from the JSON schema on a website. Part of that is an array of ingredients (i.e., 3 large yellow onions) that I want to pass into another function to get back "yellow onion."
I suspect I need an API endpoint /classify/ingredients that sits in front of a python function that passes the information into my Spacy model.
Where do people deploy these things? I love using AWS Lambdas because of the low cost. I'd love to know what others are doing though to move spacy models into a production environment in a cost effective way.
Thanks,
Joe