Datasets:

Modalities:
Tabular
Text
Formats:
json
Languages:
Hebrew
Libraries:
Datasets
pandas
License:
Shaltiel commited on
Commit
ce68b30
ยท
verified ยท
1 Parent(s): eb35ecc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -3
README.md CHANGED
@@ -1,3 +1,90 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - he
5
+ ---
6
+
7
+ # Suffixed Verbal Forms Detection Dataset for Modern Hebrew
8
+
9
+ ## Dataset Summary
10
+
11
+ This dataset contains annotated examples of Hebrew sentences with ambiguous verbal forms. These ambiguous forms can either be a verb with a pronominal suffix (e.g., "he saw him") or a standard verb without the suffix (e.g., "he saw"). The goal of the dataset is to support tasks involving the identification and disambiguation of verbs with pronominal suffixes in Hebrew literature and texts.
12
+
13
+ The dataset was used for the development of the [OtoBERT](https://huggingface.co/dicta-il/otobert) model released [here](tbd), which aims to identify and simplify these suffixed verb forms in Hebrew texts.
14
+
15
+ ### Example Usage:
16
+
17
+ ```python
18
+ from datasets import load_dataset
19
+
20
+ dataset = load_dataset("dicta-il/hebrew_suffix_verbal_forms")
21
+
22
+ # Display an example
23
+ print(dataset['test'][0])
24
+ ```
25
+
26
+ ## Dataset Structure
27
+
28
+ The dataset is provided in the following format:
29
+
30
+ - `text`: The full sentence containing the ambiguous Hebrew verb.
31
+ - `startOffset`: The start position of the ambiguous verb in the sentence.
32
+ - `endOffset`: The end position of the ambiguous verb in the sentence.
33
+ - `label`: Whether the ambiguous verb contains a pronominal suffix (`With_Suffix`) or does not contain a suffix (`No_Suffix`).
34
+
35
+ ### Sample Entry:
36
+
37
+ ```json
38
+ {
39
+ "text": "ื‘ืขื•ืœื ื”ื™ืฉื™ื‘ื•ืช ืœื ื”ื™ื” ื ื”ื•ื’ ืœืœืžื•ื“ ืชื \"ืš ื‘ืื•ืคืŸ ืจืฉืžื™ ื•ื—ื™ื“ืฉื ื• ืœื™ืžื•ื“ ืคืจืง ื™ื•ืžื™ ื‘ื‘ื•ืงืจ ืื—ืจื™ ื”ืชืคื™ืœื” ื›ื—ืœืง ืžืชื›ื ื™ืช ื”ื™ื•ื.",
40
+ "startOffset": 48,
41
+ "endOffset": 55,
42
+ "label": "No_Suffix"
43
+ }
44
+ ```
45
+
46
+ ## Annotations
47
+
48
+ The dataset has been manually annotated to indicate whether the ambiguous verb in each sentence includes a pronominal suffix or not. The labels are:
49
+
50
+ - `With_Suffix`: The ambiguous verb contains a pronominal suffix.
51
+ - `No_Suffix`: The ambiguous verb does not contain a pronominal suffix.
52
+
53
+ ### Split Information:
54
+
55
+ - **Test**: Contains 2,589 examples with the `No_Suffix` label, and 264 instances with `With_Suffix` label.
56
+
57
+ ## Use Cases
58
+
59
+ This dataset is useful for tasks related to:
60
+
61
+ - Hebrew Natural Language Processing (NLP)
62
+ - Morphological analysis in Semitic languages
63
+ - Training models for disambiguation of suffixed verbs in Hebrew literature
64
+ - Complex Word Identification
65
+
66
+ ## Dataset Creation
67
+
68
+ The dataset was created by manually annotating naturally occurring Hebrew sentences, primarily sourced from Hebrew literature and newspapers. Each ambiguous verb was labeled according to its correct morphological form (suffixed or not suffixed).
69
+
70
+ ## Citation
71
+
72
+ If you use this dataset in your research, please cite:
73
+
74
+ ```bibtex
75
+ tbd
76
+ ```
77
+
78
+
79
+ ## License
80
+
81
+ Shield: [![CC BY 4.0][cc-by-shield]][cc-by]
82
+
83
+ This work is licensed under a
84
+ [Creative Commons Attribution 4.0 International License][cc-by].
85
+
86
+ [![CC BY 4.0][cc-by-image]][cc-by]
87
+
88
+ [cc-by]: http://creativecommons.org/licenses/by/4.0/
89
+ [cc-by-image]: https://i.creativecommons.org/l/by/4.0/88x31.png
90
+ [cc-by-shield]: https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg