Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Chomsky Corpus
|
| 2 |
+
|
| 3 |
+
## Summary
|
| 4 |
+
|
| 5 |
+
A cleaned text dataset scraped from selected public sections of `chomsky.info`.
|
| 6 |
+
|
| 7 |
+
## Source URLs
|
| 8 |
+
|
| 9 |
+
- https://chomsky.info/articles/
|
| 10 |
+
- https://chomsky.info/interviews/
|
| 11 |
+
- https://chomsky.info/letters/
|
| 12 |
+
- https://chomsky.info/talks/
|
| 13 |
+
- https://chomsky.info/debates/
|
| 14 |
+
|
| 15 |
+
## Schema
|
| 16 |
+
|
| 17 |
+
- `record_id`: stable record identifier
|
| 18 |
+
- `section`: source section on the website
|
| 19 |
+
- `article_title`: title extracted from the listing page
|
| 20 |
+
- `page_title`: title extracted from the detail page when available
|
| 21 |
+
- `article_date`: normalized date when available
|
| 22 |
+
- `content`: cleaned page text
|
| 23 |
+
- `content_length`: number of characters in content
|
| 24 |
+
- `content_hash`: normalized content hash for deduplication
|
| 25 |
+
- `index_url`: listing page where the document was discovered
|
| 26 |
+
|
| 27 |
+
## Cleaning
|
| 28 |
+
|
| 29 |
+
- whitespace normalization
|
| 30 |
+
- exact deduplication using normalized content hash
|
| 31 |
+
- invalid domain rejection
|
| 32 |
+
- missing title rejection
|
| 33 |
+
- missing content rejection
|
| 34 |
+
- short-content rejection
|
| 35 |
+
|
| 36 |
+
## Quality Snapshot
|
| 37 |
+
- catalog_count: 1192
|
| 38 |
+
- raw_record_count: 1192
|
| 39 |
+
- validated_record_count: 1191
|
| 40 |
+
- rejected_record_count: 1
|
| 41 |
+
- deduped_record_count: 1186
|
| 42 |
+
- duplicate_count: 5
|
| 43 |
+
- min_content_length: 204
|
| 44 |
+
- median_content_length: 16075
|
| 45 |
+
- max_content_length: 2251683
|