synthetic-spam-detection-dataset-v1
收藏资源简介:
<p align="center"> <img src="https://raw.githubusercontent.com/tanaos/.github/master/assets/logo.png" width="250px" alt="Tanaos – Train task specific LLMs without training data, for offline NLP and Text Classification"> </p> # Tanaos Spam Detection Training Dataset This dataset was created synthetically by Tanaos with the [Artifex](https://github.com/tanaos/artifex) Python library. The dataset is designed to **train and evaluate spam detection systems** — models that detect, classify, or filter unsolicited commercial advertisement, fraudulent messages, or other unwanted content in text form. Our flagship spam detection model, [tanaos-spam-detection-v1](https://huggingface.co/tanaos/tanaos-spam-detection-v1), was trained on this dataset. ## Dataset Summary The dataset contains text samples labeled as either `0` (`not_spam`) or `1` (`spam`). The following categories are considered spam: 1. Unsolicited commercial advertisement or non-commercial proselytizing. 2. Fraudulent schemes. including get-rich-quick and pyramid schemes. 3. Phishing attempts. unrealistic offers or announcements. 4. Content with deceptive or misleading information. 5. Malware or harmful links. 6. Adult content or explicit material. 7. Excessive use of capitalization or punctuation to grab attention. --- ## How to Use ```python from datasets import load_dataset dataset = load_dataset("tanaos/synthetic-spam-detection-dataset-v1") print(dataset["train"][0]) ``` ## Intended Use This dataset is intended for training and evaluating spam detection models. Common use cases: - Training machine learning models to classify text messages as spam or not spam. - Evaluating the performance of spam detection algorithms. - Fine-tuning pre-trained language models for spam detection tasks.



