DEV Community

Discussion on: Have you done anything interesting with AI/ML?

Collapse
 
matthewvielkind profile image
Matthew Vielkind

I've been tinkering with a chatbot to help me discover / cook recipes. Right now I'm using mostly pre-trained NLP models for the document embeddings and semantic search, which work decent enough for now. I'm planning to fine tune the NLP models to improve search results and maybe add a voice integration with some QA models so I can ask "how much salt do I need?" and get a response instead of always looking back at the recipe.

An early prototype is available here. I mostly work with data on a day-to-day basis so this has also been a learning experience with front-end dev and application deployment!