File size: 4,685 Bytes
6eae8fc 8a21c51 6eae8fc 8a21c51 6eae8fc 8a21c51 6eae8fc 8a21c51 6eae8fc | 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | ---
license: cc-by-sa-4.0
language:
- en
task_categories:
- text-generation
- text-classification
pretty_name: adult-fanfiction.org Archive Dataset
size_categories:
- 100K<n<1M
tags:
- fiction
- fanfiction
- creative-writing
- long-form-text
- adult-content
configs:
- config_name: archives
data_files:
- split: train
path: archives/archives.parquet
- config_name: pages
data_files:
- split: train
path: pages/pages.parquet
- config_name: stories
data_files:
- split: train
path: stories/stories.parquet
- config_name: chapters
data_files:
- split: train
path: chapters/chapters.parquet
---
# adult-fanfiction.org Archive Dataset
This dataset contains story metadata, chapter text, and archive page records from public adult-fanfiction.org archive subdomains.
The dataset is organized into four parquet tables:
| Table | Rows | Description |
| --- | ---: | --- |
| `archives` | 22 | Archive subdomains included in the dataset. |
| `pages` | 16,597 | Archive/listing pages represented in the crawl. |
| `stories` | 126,380 | One row per story, including metadata and declared chapter count. |
| `chapters` | 525,650 | One row per story chapter, including HTML and plain text. |
## Files
- `archives/archives.parquet`
- `pages/pages.parquet`
- `stories/stories.parquet`
- `chapters/chapters.parquet`
All parquet files are compressed with Zstandard (`zstd`).
## Schema
### `archives`
| Field | Type | Description |
| --- | --- | --- |
| `host` | string | Archive subdomain host. |
| `base_url` | string | Base URL for the archive. |
| `started_at` | string | Timestamp when the archive record was created. |
### `pages`
| Field | Type | Description |
| --- | --- | --- |
| `url` | string | Archive/listing page URL. |
| `archive_host` | string | Archive subdomain host. |
| `status` | integer | HTTP status returned for the page. |
| `fetched_at` | string | Timestamp when the page record was written. |
| `elapsed_ms` | integer | Request time in milliseconds. |
| `story_links_found` | integer | Number of story links found on the page. |
| `archive_links_found` | integer | Number of archive/listing links found on the page. |
### `stories`
| Field | Type | Description |
| --- | --- | --- |
| `archive_host` | string | Archive subdomain host. |
| `story_id` | string | Story identifier from the source site. |
| `url` | string | Canonical story URL. |
| `title` | string | Story title. |
| `author_name` | string | Author display name. |
| `author_url` | string | Author profile URL when available. |
| `category` | string | Archive/category path shown for the story. |
| `rating` | string | Source-site rating label. |
| `chapters_count` | integer | Declared number of chapters. |
| `views` | integer | Source-site view count. |
| `reviews` | integer | Source-site review count. |
| `recommended` | integer | Source-site recommendation count. |
| `currently_reading` | integer | Source-site currently-reading count. |
| `published_date` | string | Published date as shown by the source site. |
| `updated_date` | string | Updated date as shown by the source site, when present. |
| `description` | string | Story summary or listing description. |
| `disclaimer` | string | Story disclaimer text, when present. |
| `tags_json` | string | JSON-encoded list of source-site tags. |
| `metadata_json` | string | JSON-encoded source metadata key/value pairs. |
| `fetched_at` | string | Timestamp when the story record was written. |
### `chapters`
| Field | Type | Description |
| --- | --- | --- |
| `archive_host` | string | Archive subdomain host. |
| `story_id` | string | Story identifier from the source site. |
| `chapter_number` | integer | Chapter number within the story. |
| `chapter_url` | string | Chapter URL. |
| `title` | string | Chapter title, when present. |
| `body_html` | string | Chapter body HTML. |
| `body_text` | string | Plain-text chapter body. |
| `fetched_at` | string | Timestamp when the chapter record was written. |
## Data Quality Notes
- The dataset contains `525,650` chapter rows, matching the sum of `stories.chapters_count`.
- All story rows include title, author name, published date, rating, view count, and tags fields.
- No chapter rows have empty `body_text`.
- Source date fields are preserved as displayed on the website and are not normalized.
- `tags_json` and `metadata_json` are JSON strings.
## License
This dataset is released under the Creative Commons Attribution-ShareAlike 4.0 International license (`CC-BY-SA-4.0`).
## Content Warning
This dataset contains adult-oriented fiction and may include explicit sexual content, violence, sensitive themes, and other mature material.
|