davidstap commited on
Commit
264a184
1 Parent(s): e44d001

update README

Browse files
Files changed (1) hide show
  1. README.md +25 -1
README.md CHANGED
@@ -7501,4 +7501,28 @@ configs:
7501
  path: data/eng-zyp/test.json
7502
  ---
7503
 
7504
- This dataset pre-computes all English-centric directions from [bible-nlp/biblenlp-corpus](https://huggingface.co/datasets/bible-nlp/biblenlp-corpus), and as a result loading is significantly faster.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7501
  path: data/eng-zyp/test.json
7502
  ---
7503
 
7504
+ This dataset pre-computes all English-centric directions from [bible-nlp/biblenlp-corpus](https://huggingface.co/datasets/bible-nlp/biblenlp-corpus), and as a result loading is significantly faster.
7505
+
7506
+ Loading example:
7507
+ ```python
7508
+ >>> from datasets import load_dataset
7509
+ >>> dataset = load_dataset("davidstap/biblenlp-corpus-mmteb", "eng-arb", trust_remote_code=True)
7510
+ >>> dataset
7511
+ DatasetDict({
7512
+ train: Dataset({
7513
+ features: ['eng', 'arb'],
7514
+ num_rows: 28723
7515
+ })
7516
+ validation: Dataset({
7517
+ features: ['eng', 'arb'],
7518
+ num_rows: 1578
7519
+ })
7520
+ test: Dataset({
7521
+ features: ['eng', 'arb'],
7522
+ num_rows: 1551
7523
+ })
7524
+ })
7525
+ >>>
7526
+ ```
7527
+
7528
+ Note that in all possible configurations, `eng` comes before the other language.