Datasets:
Commit ·
71919ae
1
Parent(s): 98fe77c
Credit source expansion contributor
Browse files- CHANGELOG.md +1 -0
- README.md +7 -0
- artifacts/bartek_source_ingestion_plan_2026-07-02.md +3 -0
- src/make_docs.py +9 -0
CHANGELOG.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
| 6 |
- Current release totals after parquet recount: 12 sources, 2,491,773 docs, 6.28B tokens (tiktoken proxy).
|
| 7 |
- Added `1000_novels` as a stable CC-BY-4.0 literature source.
|
| 8 |
- Added source registry entries and PR contract for future `biblioteka_nauki` and `europeana` ingestion with per-document license/author metadata. These sources are not included in v0.2.1 parquets yet.
|
|
|
|
| 9 |
- Kept raw SpeakLeash Europeana excluded unless a direct rebuild preserves per-record rights metadata.
|
| 10 |
- Sources: eurlex, parliamentary, wikisource, wikipedia, dziennik_ustaw, wolne_lektury, 1000_novels, wikiquote, eltec_pol, wikivoyage, wikibooks, wikinews.
|
| 11 |
- Excluded (see README): open_subtitles_corpus, europeana_eu_pl_corpus_raw_speakleash, project_gutenberg_pl_corpus.
|
|
|
|
| 6 |
- Current release totals after parquet recount: 12 sources, 2,491,773 docs, 6.28B tokens (tiktoken proxy).
|
| 7 |
- Added `1000_novels` as a stable CC-BY-4.0 literature source.
|
| 8 |
- Added source registry entries and PR contract for future `biblioteka_nauki` and `europeana` ingestion with per-document license/author metadata. These sources are not included in v0.2.1 parquets yet.
|
| 9 |
+
- Credited Bart Kobyliński for source expansion work on Biblioteka Nauki and Europeana metadata/rebuild preparation.
|
| 10 |
- Kept raw SpeakLeash Europeana excluded unless a direct rebuild preserves per-record rights metadata.
|
| 11 |
- Sources: eurlex, parliamentary, wikisource, wikipedia, dziennik_ustaw, wolne_lektury, 1000_novels, wikiquote, eltec_pol, wikivoyage, wikibooks, wikinews.
|
| 12 |
- Excluded (see README): open_subtitles_corpus, europeana_eu_pl_corpus_raw_speakleash, project_gutenberg_pl_corpus.
|
README.md
CHANGED
|
@@ -58,6 +58,13 @@ Credit for the underlying texts belongs to the upstream sources and to SpeakLeas
|
|
| 58 |
as the redistributing aggregator; this release does not claim ownership of them
|
| 59 |
(see Disclaimer).
|
| 60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
## Guiding principles
|
| 62 |
1. **Open & traceable licensing** — every source is *openly licensed* with a documented
|
| 63 |
legal basis (see each datasheet's "traceable basis"), not a vague "public domain".
|
|
|
|
| 58 |
as the redistributing aggregator; this release does not claim ownership of them
|
| 59 |
(see Disclaimer).
|
| 60 |
|
| 61 |
+
## Contributors
|
| 62 |
+
|
| 63 |
+
- **Kacper Wikieł** — corpus curation, release engineering, documentation, and
|
| 64 |
+
reproducible build workflow.
|
| 65 |
+
- **Bart Kobyliński** — source expansion work for Biblioteka Nauki and Europeana,
|
| 66 |
+
including per-document license/author metadata collection and rebuild planning.
|
| 67 |
+
|
| 68 |
## Guiding principles
|
| 69 |
1. **Open & traceable licensing** — every source is *openly licensed* with a documented
|
| 70 |
legal basis (see each datasheet's "traceable basis"), not a vague "public domain".
|
artifacts/bartek_source_ingestion_plan_2026-07-02.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
# Bartek source ingestion plan
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
## Decision
|
| 4 |
|
| 5 |
Accept the two extra columns in the main parquet schema:
|
|
|
|
| 1 |
# Bartek source ingestion plan
|
| 2 |
|
| 3 |
+
Prepared from source-expansion work by **Bart Kobyliński** for Biblioteka Nauki
|
| 4 |
+
and Europeana.
|
| 5 |
+
|
| 6 |
## Decision
|
| 7 |
|
| 8 |
Accept the two extra columns in the main parquet schema:
|
src/make_docs.py
CHANGED
|
@@ -203,6 +203,13 @@ Credit for the underlying texts belongs to the upstream sources and to SpeakLeas
|
|
| 203 |
as the redistributing aggregator; this release does not claim ownership of them
|
| 204 |
(see Disclaimer).
|
| 205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 206 |
## Guiding principles
|
| 207 |
1. **Open & traceable licensing** — every source is *openly licensed* with a documented
|
| 208 |
legal basis (see each datasheet's "traceable basis"), not a vague "public domain".
|
|
@@ -302,6 +309,8 @@ python3 src/make_docs.py
|
|
| 302 |
f"`biblioteka_nauki` and `europeana` ingestion with per-document "
|
| 303 |
f"license/author metadata. These sources are not included in v{VERSION} "
|
| 304 |
f"parquets yet.\n"
|
|
|
|
|
|
|
| 305 |
f"- Kept raw SpeakLeash Europeana excluded unless a direct rebuild "
|
| 306 |
f"preserves per-record rights metadata.\n"
|
| 307 |
f"- Sources: {', '.join(n for n, _, _ in rows)}.\n"
|
|
|
|
| 203 |
as the redistributing aggregator; this release does not claim ownership of them
|
| 204 |
(see Disclaimer).
|
| 205 |
|
| 206 |
+
## Contributors
|
| 207 |
+
|
| 208 |
+
- **Kacper Wikieł** — corpus curation, release engineering, documentation, and
|
| 209 |
+
reproducible build workflow.
|
| 210 |
+
- **Bart Kobyliński** — source expansion work for Biblioteka Nauki and Europeana,
|
| 211 |
+
including per-document license/author metadata collection and rebuild planning.
|
| 212 |
+
|
| 213 |
## Guiding principles
|
| 214 |
1. **Open & traceable licensing** — every source is *openly licensed* with a documented
|
| 215 |
legal basis (see each datasheet's "traceable basis"), not a vague "public domain".
|
|
|
|
| 309 |
f"`biblioteka_nauki` and `europeana` ingestion with per-document "
|
| 310 |
f"license/author metadata. These sources are not included in v{VERSION} "
|
| 311 |
f"parquets yet.\n"
|
| 312 |
+
f"- Credited Bart Kobyliński for source expansion work on Biblioteka "
|
| 313 |
+
f"Nauki and Europeana metadata/rebuild preparation.\n"
|
| 314 |
f"- Kept raw SpeakLeash Europeana excluded unless a direct rebuild "
|
| 315 |
f"preserves per-record rights metadata.\n"
|
| 316 |
f"- Sources: {', '.join(n for n, _, _ in rows)}.\n"
|