-
Features both ML and DL model
-
Provides a high accuracy over unseen dataset
-
Clean and Easy to use Web Interface for Training and Testing
-
REST API Gateway which presently supports the following requests
- Single : Returns the classified category on sending the subject and body of a single email
- Batch : For classifying a large number of emails in one call.
- Clone this source code into local directory
git clone https://github.com/TheThinker01/AiEmailClassifier.git
- Install Python Virtualenv
pip install virtualenv
- Create a virtualenv in project directory
virtualenv env
- Activate the virtual environment
Linux :source /env/bin/activate
Windows :\env\Scripts\activate.bat
- Install all the dependencies
pip install -r Requirements.txt
- All Done 😄 ! Now run the server
python manage.py runserver 127.0.0.1:8000
- Open
127.0.0.1:8000/ml
on your browser 🎉
- All the packages and libraries used are listed in
Requirements.txt