Sudehsna commited on
Commit
0ed8b9c
·
verified ·
1 Parent(s): d4e062d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -71,6 +71,18 @@ Unit tests confirmed:
71
 
72
  - Low similarity scores for false-alignment candidates
73
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  ## File Organization
75
 
76
  | File | Description |
@@ -79,3 +91,4 @@ Unit tests confirmed:
79
  | `/parallel_data/matched_0.60_0.005.jsonl` | "best match" |
80
  | `embedded` | German and Romansh embeddings |
81
  | `data/` | Original data
 
 
71
 
72
  - Low similarity scores for false-alignment candidates
73
 
74
+ ## Download
75
+
76
+ ```python
77
+ from datasets import load_dataset
78
+
79
+ dataset = load_dataset(
80
+ "Sudeshna/Romansh_German_Parallel_Data",
81
+ data_files="parallel_data/matched_0.60_0.005.jsonl",
82
+ split="train"
83
+ )
84
+ ```
85
+
86
  ## File Organization
87
 
88
  | File | Description |
 
91
  | `/parallel_data/matched_0.60_0.005.jsonl` | "best match" |
92
  | `embedded` | German and Romansh embeddings |
93
  | `data/` | Original data
94
+