arindal1 / email-spam-detector

An e-mail spam detector using NLP and different ML Algorithms.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

E-Mail/SMS Spam Classifier

Welcome to the Mail/SMS Spam Detection project! This project aims to build a machine learning model to classify Mail and SMS messages as either "spam" or "ham" (non-spam). We use a dataset containing labeled messages for training and evaluation.

Project Overview πŸ”

E-Mail & SMS spam is a common issue that affects web users. The goal of this project is to develop a robust E-Mail/SMS spam detection model that can automatically classify incoming text messages as spam or not. We leverage natural language processing (NLP) techniques and machine learning algorithms like Naive Bayes, K Nearest Neighbours, Random Forest, and more to achieve this.

Project Structure πŸ—οΈ

The project is organized as follows:

  • dataset: This folder contains the dataset used, named "spam.csv."
  • resources: This folder includes images and other files related to the project.
  • .gitignore: Gitignore file to specify which files or directories should be ignored in version control.
  • AboutTheCode.md: Detailed explanation of the code and its components.
  • app.py: A Streamlit web app to host the model locally for interactive testing.
  • code.txt: A backup text file containing the code used in the project.
  • model.pkl: Serialized machine learning model for SMS spam detection.
  • vectorizer.pkl: Serialized feature vectorizer (TF-IDF or Count Vectorizer) used for text data.
  • requirements.txt: List of Python packages and dependencies required to run the project.
  • nltk.txt: Text file containing NLTK library imports, including stopwords and punkt.
  • spam-detection.ipynb: Jupyter Notebook source file containing the code for data preprocessing, model training, and evaluation.

Getting Started πŸ›«

To get started with this project, follow these steps:

  1. Clone the repository to your local machine:
git clone https://github.com/arindal1/email-spam-detector.git
  1. Navigate to the project directory:
cd email-spam-detector
  1. Create a Python virtual environment (recommended):
python -m venv venv
  1. Activate the virtual environment:
# On Windows
venv\Scripts\activate

# On macOS and Linux
source venv/bin/activate
  1. Install the project dependencies:
pip install -r requirements.txt
  1. Explore the Jupyter Notebook (spam-detection.ipynb) for in-depth details on data preprocessing, model training, and evaluation.

  2. To run the Streamlit app, execute the following command:

streamlit run app.py

This will launch a local web app for SMS spam detection.

Project Preview

Tech Stack πŸ”§

  • Python
  • Jupyter Notebook
  • StreamLit

Note: I tried to host the model globally using Heroku, but couldn't because of their Billing policies. If you have Heroku, you can create a new app and host the model globally.

About the Dataset πŸ’Ύ

The dataset used in this project is available on Kaggle: SMS Spam Collection Dataset. It contains SMS messages labeled as "spam" or "ham." You can download the dataset from the provided link and place it in the "dataset" folder.

About the Code πŸ’»

For detailed information about the code and its components, please refer to the AboutTheCode.md file in this repository.

Contributions πŸ«±πŸΌβ€πŸ«²πŸ½

See the open issues for a list of proposed features (and known issues).
Contributions to this project are welcome! If you have any ideas, bug reports, or feature requests, please open an issue or submit a pull request. Contributions are what make the open-source community an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Contact πŸ“±

If you have any questions or suggestions related to this project, you can reach out to me at:

External Links πŸ”—


Note: This is a personal project created for educational and demonstrative purposes. I made this project just for fun and learn more about Machine Learning in the process, and also record my progress in this field. Feel free to customize the content, links, and images to match your project's specifics.

Happy learning and predicting! 😁

About

An e-mail spam detector using NLP and different ML Algorithms.


Languages

Language:Jupyter Notebook 99.8%Language:Python 0.2%