Add files using upload-large-folder tool
Browse files- README.md +115 -0
- archives/archives.parquet +3 -0
- chapters/chapters.parquet +3 -0
- pages/pages.parquet +3 -0
- stories/stories.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-sa-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-generation
|
| 7 |
+
- text-classification
|
| 8 |
+
pretty_name: AdultFanFiction.org Archive Dataset
|
| 9 |
+
size_categories:
|
| 10 |
+
- 100K<n<1M
|
| 11 |
+
tags:
|
| 12 |
+
- fiction
|
| 13 |
+
- fanfiction
|
| 14 |
+
- creative-writing
|
| 15 |
+
- long-form-text
|
| 16 |
+
- adult-content
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# AdultFanFiction.org Archive Dataset
|
| 20 |
+
|
| 21 |
+
This dataset contains story metadata, chapter text, and archive page records from public AdultFanFiction.org archive subdomains.
|
| 22 |
+
|
| 23 |
+
The dataset is organized into four parquet tables:
|
| 24 |
+
|
| 25 |
+
| Table | Rows | Description |
|
| 26 |
+
| --- | ---: | --- |
|
| 27 |
+
| `archives` | 22 | Archive subdomains included in the dataset. |
|
| 28 |
+
| `pages` | 16,597 | Archive/listing pages represented in the crawl. |
|
| 29 |
+
| `stories` | 126,380 | One row per story, including metadata and declared chapter count. |
|
| 30 |
+
| `chapters` | 525,650 | One row per story chapter, including HTML and plain text. |
|
| 31 |
+
|
| 32 |
+
## Files
|
| 33 |
+
|
| 34 |
+
- `archives/archives.parquet`
|
| 35 |
+
- `pages/pages.parquet`
|
| 36 |
+
- `stories/stories.parquet`
|
| 37 |
+
- `chapters/chapters.parquet`
|
| 38 |
+
|
| 39 |
+
All parquet files are compressed with Zstandard (`zstd`).
|
| 40 |
+
|
| 41 |
+
## Schema
|
| 42 |
+
|
| 43 |
+
### `archives`
|
| 44 |
+
|
| 45 |
+
| Field | Type | Description |
|
| 46 |
+
| --- | --- | --- |
|
| 47 |
+
| `host` | string | Archive subdomain host. |
|
| 48 |
+
| `base_url` | string | Base URL for the archive. |
|
| 49 |
+
| `started_at` | string | Timestamp when the archive record was created. |
|
| 50 |
+
|
| 51 |
+
### `pages`
|
| 52 |
+
|
| 53 |
+
| Field | Type | Description |
|
| 54 |
+
| --- | --- | --- |
|
| 55 |
+
| `url` | string | Archive/listing page URL. |
|
| 56 |
+
| `archive_host` | string | Archive subdomain host. |
|
| 57 |
+
| `status` | integer | HTTP status returned for the page. |
|
| 58 |
+
| `fetched_at` | string | Timestamp when the page record was written. |
|
| 59 |
+
| `elapsed_ms` | integer | Request time in milliseconds. |
|
| 60 |
+
| `story_links_found` | integer | Number of story links found on the page. |
|
| 61 |
+
| `archive_links_found` | integer | Number of archive/listing links found on the page. |
|
| 62 |
+
|
| 63 |
+
### `stories`
|
| 64 |
+
|
| 65 |
+
| Field | Type | Description |
|
| 66 |
+
| --- | --- | --- |
|
| 67 |
+
| `archive_host` | string | Archive subdomain host. |
|
| 68 |
+
| `story_id` | string | Story identifier from the source site. |
|
| 69 |
+
| `url` | string | Canonical story URL. |
|
| 70 |
+
| `title` | string | Story title. |
|
| 71 |
+
| `author_name` | string | Author display name. |
|
| 72 |
+
| `author_url` | string | Author profile URL when available. |
|
| 73 |
+
| `category` | string | Archive/category path shown for the story. |
|
| 74 |
+
| `rating` | string | Source-site rating label. |
|
| 75 |
+
| `chapters_count` | integer | Declared number of chapters. |
|
| 76 |
+
| `views` | integer | Source-site view count. |
|
| 77 |
+
| `reviews` | integer | Source-site review count. |
|
| 78 |
+
| `recommended` | integer | Source-site recommendation count. |
|
| 79 |
+
| `currently_reading` | integer | Source-site currently-reading count. |
|
| 80 |
+
| `published_date` | string | Published date as shown by the source site. |
|
| 81 |
+
| `updated_date` | string | Updated date as shown by the source site, when present. |
|
| 82 |
+
| `description` | string | Story summary or listing description. |
|
| 83 |
+
| `disclaimer` | string | Story disclaimer text, when present. |
|
| 84 |
+
| `tags_json` | string | JSON-encoded list of source-site tags. |
|
| 85 |
+
| `metadata_json` | string | JSON-encoded source metadata key/value pairs. |
|
| 86 |
+
| `fetched_at` | string | Timestamp when the story record was written. |
|
| 87 |
+
|
| 88 |
+
### `chapters`
|
| 89 |
+
|
| 90 |
+
| Field | Type | Description |
|
| 91 |
+
| --- | --- | --- |
|
| 92 |
+
| `archive_host` | string | Archive subdomain host. |
|
| 93 |
+
| `story_id` | string | Story identifier from the source site. |
|
| 94 |
+
| `chapter_number` | integer | Chapter number within the story. |
|
| 95 |
+
| `chapter_url` | string | Chapter URL. |
|
| 96 |
+
| `title` | string | Chapter title, when present. |
|
| 97 |
+
| `body_html` | string | Chapter body HTML. |
|
| 98 |
+
| `body_text` | string | Plain-text chapter body. |
|
| 99 |
+
| `fetched_at` | string | Timestamp when the chapter record was written. |
|
| 100 |
+
|
| 101 |
+
## Data Quality Notes
|
| 102 |
+
|
| 103 |
+
- The dataset contains `525,650` chapter rows, matching the sum of `stories.chapters_count`.
|
| 104 |
+
- All story rows include title, author name, published date, rating, view count, and tags fields.
|
| 105 |
+
- No chapter rows have empty `body_text`.
|
| 106 |
+
- Source date fields are preserved as displayed on the website and are not normalized.
|
| 107 |
+
- `tags_json` and `metadata_json` are JSON strings.
|
| 108 |
+
|
| 109 |
+
## License
|
| 110 |
+
|
| 111 |
+
This dataset is released under the Creative Commons Attribution-ShareAlike 4.0 International license (`CC-BY-SA-4.0`).
|
| 112 |
+
|
| 113 |
+
## Content Warning
|
| 114 |
+
|
| 115 |
+
This dataset contains adult-oriented fiction and may include explicit sexual content, violence, sensitive themes, and other mature material.
|
archives/archives.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:081b1e1a5606958eea6108f7d01199872708fc29ac136f5427ad23d97cf5adff
|
| 3 |
+
size 1608
|
chapters/chapters.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:081212b4bd1d09f44834b13f912878e8e61e26d8830a439bcf281351556d3415
|
| 3 |
+
size 5682534137
|
pages/pages.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:391a1ae96b882cb374de4b3ed4cef9cdf19dc5255e051bab959520efab985dd3
|
| 3 |
+
size 171576
|
stories/stories.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:359e8e044dfd835566ee5c88bf8fcb8f8384f3e1b33aca4115a0fbc9da886a4a
|
| 3 |
+
size 13102434
|