Datasets:
File size: 1,590 Bytes
c2bf1c9 5758f95 9f1a83f c2bf1c9 5758f95 | 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | ---
language:
- en
license: mit
size_categories:
- n<1K
task_categories:
- text-generation
tags:
- geo
- seo
- search-engine-optimization
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: doc_id
dtype: string
- name: url
dtype: string
- name: html_source
dtype: string
- name: cleaned_text
dtype: string
- name: cleaned_text_length
dtype: int64
- name: topic_tags
sequence: string
- name: primary_topic
dtype: string
- name: difficulty_tags
sequence: string
- name: intent_tags
sequence: string
- name: data_source
dtype: string
- name: is_html_parse_failed
dtype: bool
- name: needs_refetch
dtype: bool
- name: refetch_success
dtype: bool
- name: html_issues
sequence: string
- name: issue_score
dtype: float64
- name: query
dtype: string
- name: title
dtype: string
splits:
- name: train
num_bytes: 1792776
num_examples: 200
download_size: 988916
dataset_size: 1792776
---
# GEO HTML 200 Dataset
A curated dataset of 200 web documents for Generative Engine Optimization (GEO) research.
## Features
| Column | Description |
|--------|-------------|
| doc_id | Unique document identifier |
| url | Source URL |
| cleaned_text | Parsed plain text content |
| cleaned_text_length | Character count |
| query | Associated search query |
| title | Document title |
| topic_tags | Topic classification |
## Usage
```python
from datasets import load_dataset
ds = load_dataset("erv1n/geo_html_200")
```
|