Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,52 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-nd-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-nd-4.0
|
| 3 |
+
language:
|
| 4 |
+
- el
|
| 5 |
+
|
| 6 |
+
tags:
|
| 7 |
+
- greek
|
| 8 |
+
- wordpress
|
| 9 |
+
- blog
|
| 10 |
+
- articles
|
| 11 |
+
- news
|
| 12 |
+
- technology
|
| 13 |
+
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1K<n<10K
|
| 16 |
---
|
| 17 |
+
|
| 18 |
+
# EELLAK and Other Articles
|
| 19 |
+
|
| 20 |
+
## Dataset Description
|
| 21 |
+
|
| 22 |
+
This dataset contains articles collected from a multi-site WordPress network focused on technology, digital culture, public policy, education, and related topics. Each row corresponds to a single published article and includes the article body in Markdown format together with publication metadata.
|
| 23 |
+
|
| 24 |
+
The corpus spans multiple thematic websites and covers a long publication period, making it suitable for diachronic and domain-specific language analysis in Modern Greek.
|
| 25 |
+
|
| 26 |
+
The text is primarily in Modern Greek, with occasional English passages and bilingual content.
|
| 27 |
+
|
| 28 |
+
## Dataset Structure
|
| 29 |
+
|
| 30 |
+
The dataset is distributed as a parquet file with one row per article.
|
| 31 |
+
|
| 32 |
+
### Columns
|
| 33 |
+
|
| 34 |
+
| Column | Type | Description |
|
| 35 |
+
|---|---|---|
|
| 36 |
+
| `site` | string | Source website or subdomain |
|
| 37 |
+
| `id` | string | Article identifier unique within each site |
|
| 38 |
+
| `post_title` | string | Article title |
|
| 39 |
+
| `post_name` | string | URL slug |
|
| 40 |
+
| `post_date` | timestamp[us] | Original publication timestamp |
|
| 41 |
+
| `post_modified` | timestamp[us] | Last modification timestamp |
|
| 42 |
+
| `post_author` | string | Author identifier |
|
| 43 |
+
| `guid` | string | Canonical article URL |
|
| 44 |
+
| `content` | string | Markdown article body |
|
| 45 |
+
| `word_count` | int64 | Word count of `content` |
|
| 46 |
+
| `token_count` | int64 | Token count of `content` |
|
| 47 |
+
|
| 48 |
+
The pair `(site, id)` can be treated as the primary key.
|
| 49 |
+
|
| 50 |
+
## Timestamps
|
| 51 |
+
|
| 52 |
+
Timestamps are stored as timezone-naive values representing local wall-clock time from the source WordPress installation
|