CoolFace
Datasetpublic

TheCodingKid/clutch-humanizer-v2-data

Clutch Humanizer V2 Training Data Training data for the Clutch Humanizer model. Contents training_pairs.json: 7000 (AI text, Human text) pairs for training Format [ { "id": 0, "ai_text": "AI-style text to convert", "human_text": "Human-style target text", "source": "alpaca|dolly|essay" }, ... ] Usage from datasets import load_dataset dataset = load_dataset("TheCodingKid/clutch-humanizer-v2-data") # or import… See the full description on the dataset page: https://huggingface.co/datasets/TheCodingKid/clutch-humanizer-v2-data.

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes10downloads
README.md35 linesDownload Raw Back to root
1# Clutch Humanizer V2 Training Data2 3Training data for the Clutch Humanizer model.4 5## Contents6 7- `training_pairs.json`: 7000 (AI text, Human text) pairs for training8 9## Format10 11```json12[13  {14    "id": 0,15    "ai_text": "AI-style text to convert",16    "human_text": "Human-style target text",17    "source": "alpaca|dolly|essay"18  },19  ...20]21```22 23## Usage24 25```python26from datasets import load_dataset27 28dataset = load_dataset("TheCodingKid/clutch-humanizer-v2-data")29# or30import json31import requests32url = "https://huggingface.co/datasets/TheCodingKid/clutch-humanizer-v2-data/raw/main/training_pairs.json"33data = requests.get(url).json()34```35