ops-tuned-llm/unlabelled-data
HTD Scraped Datasets Cleaned text chunks from Home Team Department (HTD) agency websites, processed into a consistent 8-column format for downstream tasks (QA pairs annotation, fine-tuning, etc.) Schema Column Type Description chunk_text str Cleaned text chunk (40-650 words) source_url str Original page URL page_title str Page title section_headers str Section heading path heading_path str Hierarchical path from site structure content_type str… See the full description on the dataset page: https://huggingface.co/datasets/ops-tuned-llm/unlabelled-data.
HTD Scraped Datasets
Cleaned text chunks from Home Team Department (HTD) agency websites, processed into a consistent 8-column format for downstream tasks (QA pairs annotation, fine-tuning, etc.)
Schema
Datasets
Usage
import pandas as pd
# Load a single dataset
df = pd.read_parquet("htx_dataset_cleaned.parquet")
print(df.head())Or load via HuggingFace datasets:
from datasets import load_dataset
# Load a specific config
ds = load_dataset("ops-tuned-llm/unlabelled-data")