GiliGold commited on
Commit
4046560
·
verified ·
1 Parent(s): 3d6f67e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -3
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 = load_dataset("GiliGold/hebrew_vad_lexicon", split="english_hebrew")
79
-
80
  # Load the Hebrew aggregated lexicon
81
- dataset_he = load_dataset("GiliGold/hebrew_vad_lexicon", split="hebrew_aggregated")
 
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])