Pytorch NLP Recipes is a simple implementation of a deep learning project for NLP, in particular PyTorch. This project contains two problem statements:
- Sentiment Analysis
- Named Entity Recognition
The workflow contains a couple of steps:
- Ingestion to a datamart (Schema used for training & testing)
- Building a model
- Evaluation of a model
- Deployment (used for inference)
Initialise your Python environment. I use pyenv
/ virtualenv
, and 3.11.1
make setup
make ingest
make train
make eval
make remove