pagida commited on
Commit
467f42f
·
verified ·
1 Parent(s): f8364f8

Update README: rename permalink -> pdf_url

Browse files
Files changed (1) hide show
  1. README.md +65 -49
README.md CHANGED
@@ -1,49 +1,65 @@
1
- ---
2
- license: cc-by-nc-nd-4.0
3
- language:
4
- - el
5
- ---
6
-
7
-
8
- **Dataset Info:**
9
-
10
- This dataset contains Greek-langauge maritime-related texts collected from the books section of the e-Nautilia portal (https://e-nautilia.gr/books/).
11
- It includes educational and informational content focused on shipping, navigation, and seafaring.
12
-
13
- **Metadata Info:**
14
-
15
- Each entry in the dataset contains the following fields:
16
-
17
- | Column | Type | Description |
18
- |-----------|--------|-------------|
19
- | title | string | Short document title (e.g. course or book title). |
20
- | content | string | Full extracted text (from PDF) |
21
- | pdf_url | string | Direct URL to the source file on the publisher site. |
22
-
23
-
24
- **Dataset Statistics:**
25
-
26
- Tokens:
27
-
28
- Size:
29
-
30
-
31
-
32
-
33
- **Usage:**
34
-
35
- - Text classification
36
- - Named entity recognition (NER)
37
- - Information extraction
38
- - Language modeling
39
- - Domain-specific NLP research
40
-
41
- **License:**
42
-
43
- This dataset is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0).
44
- Any commercial use requires prior written permission from the e-Nautilia. All intellectual property rights in the underlying journal articles remain with the e-Nautilia (https://e-nautilia.gr/) and the original authors of each contribution.
45
- The dataset is OCR-derived from the foundation's publicly accessible PDF archive and is provided for non-commercial research, scholarship, and educational use.
46
-
47
- **Contact:**
48
-
49
- For feedback contact: glossapi.team@eellak.gr
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-nd-4.0
3
+ language:
4
+ - el
5
+ tags:
6
+ - greek
7
+ - maritime
8
+ - nautical
9
+ - education
10
+ - textbooks
11
+ - science
12
+ - mathematics
13
+ ---
14
+
15
+ # Hellenic Merchant Marine Academy Textbooks Εκπαιδευτικά Κείμενα Ακαδημιών Εμπορικού Ναυτικού
16
+
17
+ **Dataset Info**
18
+
19
+ This dataset is a structured digital collection of 31 educational textbooks (Εκπαιδευτικά Κείμενα) used in the Hellenic Merchant Marine Academies (Ακαδημίες Εμπορικού Ναυτικού). The textbooks cover the full curriculum of nautical and engineering studies, including physics, mathematics, applied mathematics, communications, radar, naval meteorology, ship stability, marine law, refrigeration and air-conditioning systems, electrical machines, internal combustion engines, naval electronics, fluid mechanics, cargo transport, ship economic operation, and other domains relevant to merchant marine officer training.
20
+
21
+ The dataset was sourced from the educational portal of the Hellenic Merchant Marine Academies ([https://www.eef.edu.gr/](https://www.eef.edu.gr/)) and extracted from the original PDFs. Each entry corresponds to a single textbook and includes the title, the full body of the book, and a permanent link back to the original PDF.
22
+
23
+ The texts include scientific, mathematical, legal, and technical content in Modern Greek, with extensive tabular data, formulas, indices/exponents, and structured lists.
24
+
25
+ **Metadata Info**
26
+
27
+ | Column | Type | Description |
28
+ | ----------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------- |
29
+ | title | string | Book title (e.g., `Φυσική`, `Μαθηματικά`, `Ναυτική Μετεωρολογία`, `Στοιχεία Ναυτικού Δικαίου`) |
30
+ | content | string | Full text of the textbook, with tables and mathematical formatting preserved as HTML markup (`<table>`, `<tr>`, `<td>`, `<sup>`, `<sub>`, `<br>`) |
31
+ | pdf_url | string | Source URL of the original PDF on `www.eef.edu.gr` |
32
+
33
+ **Dataset Statistics**
34
+
35
+ - Textbooks (rows): 31
36
+ - Size: 4.61 MB
37
+ - Words: 1.140.500 (counted on `title` + `content`, whitespace-separated)
38
+ - Tokens: 2.657.504 (counted on `title` + `content` with the `nlpaueb/bert-base-greek-uncased-v1` WordPiece tokenizer, no special tokens, no truncation)
39
+
40
+ **Note on Content Formatting**
41
+
42
+ Because these textbooks contain a high density of mathematical formulas, scientific tables, engineering diagrams, and structured technical content, the body text is preserved with HTML markup rather than being flattened to plain text. Tables are kept as `<table>`/`<tr>`/`<td>` structures, and superscripts/subscripts (essential for formulas, units, and exponents) are kept as `<sup>` and `<sub>`. This preserves the structural information that would otherwise be lost or misrepresented in plain text and makes the dataset more useful for downstream tasks that rely on tabular and mathematical content.
43
+
44
+ A few side effects of this approach are worth noting:
45
+
46
+ - HTML entities such as `&lt;`, `&gt;`, and `&amp;` appear where the original content contained literal `<`, `>`, or `&` characters (e.g., the inequality `< 10³` is rendered as `&lt; 10<sup>3</sup>`). This is correct HTML behavior.
47
+ - In one textbook (`Πληροφορική - Ηλεκτρονικοί Υπολογιστές`), some placeholder strings written in angle brackets in the source (e.g., `<filename>`, `<password>`, `<paramters>`) were ambiguously interpreted by the extractor as HTML tags. These reflect the source extraction faithfully and have not been silently corrected.
48
+
49
+ **Usage**
50
+
51
+ This dataset is useful for:
52
+
53
+ - Natural Language Processing (NLP) tasks for Modern Greek, especially in the technical, scientific, and maritime registers
54
+ - Building Greek language models or domain-adapted embeddings for STEM and nautical education
55
+ - Extraction and modeling of tabular and mathematical content in Greek
56
+ - Maritime, navigation, and marine engineering research and education
57
+ - Training downstream tools for Greek scientific Q&A, summarization, and classification
58
+
59
+ **License**
60
+
61
+ This dataset is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0). Any commercial use requires prior written permission from the publisher of the original textbooks. All intellectual property rights in the underlying books remain with their original publishers and authors. The dataset is derived from publicly accessible PDFs and is provided for non-commercial research, scholarship, and educational use.
62
+
63
+ **Contact**
64
+
65
+ For feedback contact: glossapi.team@eellak.gr