mrapacz commited on
Commit
4b0bc83
·
verified ·
1 Parent(s): e57cbc4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -48
README.md CHANGED
@@ -1,48 +1,92 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- - split: val
9
- path: data/val-*
10
- - split: test
11
- path: data/test-*
12
- dataset_info:
13
- features:
14
- - name: PL_TAGS_BIBLEHUB
15
- sequence: string
16
- - name: EN_TAGS_BIBLEHUB
17
- sequence: string
18
- - name: EN_GREEK_NORMALIZED
19
- sequence: string
20
- - name: PL_TAGS_OBLUBIENICA
21
- sequence: string
22
- - name: PL_TRANS
23
- sequence: string
24
- - name: PL_GREEK_DIACRITICS
25
- sequence: string
26
- - name: EN_GREEK_DIACRITICS
27
- sequence: string
28
- - name: EN_TAGS_OBLUBIENICA
29
- sequence: string
30
- - name: EN_TRANS
31
- sequence: string
32
- - name: PL_GREEK_NORMALIZED
33
- sequence: string
34
- - name: _SS
35
- dtype: string
36
- splits:
37
- - name: train
38
- num_bytes: 14336367
39
- num_examples: 6352
40
- - name: val
41
- num_bytes: 1793429
42
- num_examples: 794
43
- - name: test
44
- num_bytes: 1799095
45
- num_examples: 794
46
- download_size: 4455575
47
- dataset_size: 17928891
48
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ configs:
4
+ - config_name: default
5
+ data_files:
6
+ - split: train
7
+ path: data/train-*
8
+ - split: val
9
+ path: data/val-*
10
+ - split: test
11
+ path: data/test-*
12
+ dataset_info:
13
+ features:
14
+ - name: PL_TAGS_BIBLEHUB
15
+ sequence: string
16
+ - name: EN_TAGS_BIBLEHUB
17
+ sequence: string
18
+ - name: EN_GREEK_NORMALIZED
19
+ sequence: string
20
+ - name: PL_TAGS_OBLUBIENICA
21
+ sequence: string
22
+ - name: PL_TRANS
23
+ sequence: string
24
+ - name: PL_GREEK_DIACRITICS
25
+ sequence: string
26
+ - name: EN_GREEK_DIACRITICS
27
+ sequence: string
28
+ - name: EN_TAGS_OBLUBIENICA
29
+ sequence: string
30
+ - name: EN_TRANS
31
+ sequence: string
32
+ - name: PL_GREEK_NORMALIZED
33
+ sequence: string
34
+ - name: _SS
35
+ dtype: string
36
+ splits:
37
+ - name: train
38
+ num_bytes: 14336367
39
+ num_examples: 6352
40
+ - name: val
41
+ num_bytes: 1793429
42
+ num_examples: 794
43
+ - name: test
44
+ num_bytes: 1799095
45
+ num_examples: 794
46
+ download_size: 4455575
47
+ dataset_size: 17928891
48
+ ---
49
+
50
+ # Dataset Card for Ancient Greek Interlinear Translations Dataset
51
+
52
+ This dataset provides word-level aligned interlinear translations of the New Testament from Ancient Greek to English and Polish with morphological tags sourced from Oblubienica (https://biblia.oblubienica.pl) and BibleHub (https://biblehub.com/interlinear).
53
+
54
+ ## Dataset Details
55
+
56
+ ### Dataset Description
57
+
58
+ The dataset contains interlinear translations where each Greek word is paired with its corresponding Polish and English translations, along with morphological tags from two different annotation systems. We applied a set of heuristics to align the corpora at the word level. The alignment process achieved over 99% word matching accuracy, with unmatched words being excluded. Subsequently, we trimmed all verses so that the least memory-efficient models tested in our research could encode them within the chosen limit of 512 tokens.
59
+
60
+ - **Curated by:** Maciej Rapacz
61
+ - **Language(s):** Ancient Greek, English, Polish
62
+ - **License:** CC BY-NC-SA 4.0
63
+
64
+ ### Dataset Sources
65
+
66
+ - **Repository:** https://huggingface.co/datasets/mrapacz/greek-interlinear-translations
67
+ - **Source Texts:**
68
+ - English interlinear translation from BibleHub (NA27 critical edition) - https://biblehub.com/interlinear
69
+ - Polish interlinear translation from Oblubienica (NA28 critical edition) - https://biblia.oblubienica.pl
70
+
71
+ ## Dataset Structure
72
+
73
+ The dataset is divided into:
74
+ - Training: 6,352 verses (80%)
75
+ - Validation: 794 verses (10%)
76
+ - Test: 794 verses (10%)
77
+
78
+ Each entry contains:
79
+ - `EN_GREEK_DIACRITICS`: Greek text with diacritics (BibleHub source)
80
+ - `EN_GREEK_NORMALIZED`: Normalized Greek text (lowercase, no diacritics)
81
+ - `EN_TAGS_BIBLEHUB`: BibleHub morphological tags
82
+ - `EN_TAGS_OBLUBIENICA`: Oblubienica morphological tags
83
+ - `EN_TRANS`: English translation
84
+ - `PL_GREEK_DIACRITICS`: Greek text with diacritics (Oblubienica source)
85
+ - `PL_GREEK_NORMALIZED`: Normalized Greek text
86
+ - `PL_TRANS`: Polish translation
87
+ - `PL_TAGS_BIBLEHUB`: BibleHub morphological tags mapped to Polish text
88
+ - `PL_TAGS_OBLUBIENICA`: Oblubienica morphological tags
89
+
90
+ ## Dataset Card Authors
91
+
92
+ Maciej Rapacz