File size: 604 Bytes
f02a16d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# 🧠 Beast Spam Detector
This is a spam detection model built from scratch using PyTorch. It includes:
- Custom tokenizer
- CNN + BiLSTM model
- Trained weights (.pt and .safetensors)
- Easy-to-use inference script
## 📦 Usage
```bash
python check_spam.py
```
Type your email content and press Enter twice to get prediction.
## 🧠 Model
Built using custom tokenizer and a CNN+LSTM-based architecture. Safe to use.
## 📁 Files
- `beast_spam_model.pt`: PyTorch weights
- `beast_spam_model.safetensors`: Safe format model
- `model.py`: Tokenizer + model
- `check_spam.py`: Inference script
|