thesaurus-linguae-aegyptiae commited on
Commit
183fb3b
·
verified ·
1 Parent(s): 411e4f9

Update README: dating as strings

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -26,9 +26,9 @@ dataset_info:
26
  - name: translation
27
  dtype: string
28
  - name: dateNotBefore
29
- dtype: int8
30
  - name: dateNotAfter
31
- dtype: int8
32
  - name: authors
33
  dtype: string
34
  splits:
@@ -95,7 +95,7 @@ The dataset comes as a _JSON lines_ file.
95
  - `lemmatization`: a `string`, individual [TLA Lemma IDs](https://thesaurus-linguae-aegyptiae.de/info/lemma-lists)+"`|`"+lemma transliteration, separated by space.
96
  - `transliteration`: a `string`, individual glosses separated by space (for information, see the comments below).
97
  - `translation`: a `string`, German translation.
98
- - `dateNotBefore`, `dateNotAfter`: two integers (`int8`) or `null`, termini ante quem not and post quem non for the text witness.
99
  - `authors`: a `string`, main authors and further contributors to the sentence data set, individual items separated by `;`.
100
 
101
  ### Data instances
@@ -108,8 +108,8 @@ Example of an dataset instance:
108
  "UPOS": "VERB ADP NOUN PRON",
109
  "glossing": "V PREP N.m -2sg.m",
110
  "translation": "Komm in dein Haus!",
111
- "dateNotBefore": -75,
112
- "dateNotAfter": -51,
113
  "authors": "Günter Vittmann;AV Altägyptisches Wörterbuch, AV Wortschatz der ägyptischen Sprache"
114
  }
115
  ```
 
26
  - name: translation
27
  dtype: string
28
  - name: dateNotBefore
29
+ dtype: string
30
  - name: dateNotAfter
31
+ dtype: string
32
  - name: authors
33
  dtype: string
34
  splits:
 
95
  - `lemmatization`: a `string`, individual [TLA Lemma IDs](https://thesaurus-linguae-aegyptiae.de/info/lemma-lists)+"`|`"+lemma transliteration, separated by space.
96
  - `transliteration`: a `string`, individual glosses separated by space (for information, see the comments below).
97
  - `translation`: a `string`, German translation.
98
+ - `dateNotBefore`, `dateNotAfter`: two `strings` containing an integer or empty, _terminus ante quem non_ and _terminus post quem non_ for the text witness.
99
  - `authors`: a `string`, main authors and further contributors to the sentence data set, individual items separated by `;`.
100
 
101
  ### Data instances
 
108
  "UPOS": "VERB ADP NOUN PRON",
109
  "glossing": "V PREP N.m -2sg.m",
110
  "translation": "Komm in dein Haus!",
111
+ "dateNotBefore": "-75",
112
+ "dateNotAfter": "-51",
113
  "authors": "Günter Vittmann;AV Altägyptisches Wörterbuch, AV Wortschatz der ägyptischen Sprache"
114
  }
115
  ```