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.
010
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 json
import requests
url = "https://huggingface.co/datasets/TheCodingKid/clutch-humanizer-v2-data/raw/main/training_pairs.json"
data = requests.get(url).json()