Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -73,12 +73,14 @@ Each entry contains:
|
|
| 73 |
## Usage
|
| 74 |
```python
|
| 75 |
from datasets import load_dataset
|
|
|
|
|
|
|
| 76 |
|
| 77 |
# Load the English-Hebrew mapped lexicon
|
| 78 |
-
dataset_en_he =
|
| 79 |
-
|
| 80 |
# Load the Hebrew aggregated lexicon
|
| 81 |
-
dataset_he =
|
|
|
|
| 82 |
|
| 83 |
# View a sample entry
|
| 84 |
print(dataset_he[0])
|
|
|
|
| 73 |
## Usage
|
| 74 |
```python
|
| 75 |
from datasets import load_dataset
|
| 76 |
+
vad_dataset = load_dataset("GiliGold/hebrew_vad_lexicon")
|
| 77 |
+
print(dataset)
|
| 78 |
|
| 79 |
# Load the English-Hebrew mapped lexicon
|
| 80 |
+
dataset_en_he = vad_dataset["english_hebrew"]
|
|
|
|
| 81 |
# Load the Hebrew aggregated lexicon
|
| 82 |
+
dataset_he = vad_dataset["hebrew_aggregated"]
|
| 83 |
+
|
| 84 |
|
| 85 |
# View a sample entry
|
| 86 |
print(dataset_he[0])
|