Beehzod commited on
Commit
c924bd0
1 Parent(s): d06cbbf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -50,7 +50,7 @@ Many examples in this dataset have trailing quotations marks, e.g "Musibat yomon
50
  In addition, the majority of training sentences end in punctuation ( . or ? or ! ), whereas just a small proportion do not. In the dev set, almost all sentences end in punctuation. Thus, it is recommended to append a full-stop ( . ) to the end of the small number of training examples that do not end in punctuation.
51
 
52
  ---
53
-
54
  from datasets import load_dataset
55
 
56
  ds = load_dataset("mozilla-foundation/common_voice_17", "en", use_auth_token=True)
@@ -72,5 +72,5 @@ def prepare_dataset(batch):
72
  return batch
73
 
74
  ds = ds.map(prepare_dataset, desc="preprocess dataset")
75
-
76
  ---
 
50
  In addition, the majority of training sentences end in punctuation ( . or ? or ! ), whereas just a small proportion do not. In the dev set, almost all sentences end in punctuation. Thus, it is recommended to append a full-stop ( . ) to the end of the small number of training examples that do not end in punctuation.
51
 
52
  ---
53
+ '''
54
  from datasets import load_dataset
55
 
56
  ds = load_dataset("mozilla-foundation/common_voice_17", "en", use_auth_token=True)
 
72
  return batch
73
 
74
  ds = ds.map(prepare_dataset, desc="preprocess dataset")
75
+ '''
76
  ---