Remove internal project references from card
Browse files
README.md
CHANGED
|
@@ -51,9 +51,9 @@ Markdown asterisks from the source transcript are stripped from outputs.
|
|
| 51 |
}
|
| 52 |
```
|
| 53 |
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
|
| 58 |
## Task
|
| 59 |
|
|
@@ -71,17 +71,16 @@ correction** jointly — a broader task than a clean-input transliteration basel
|
|
| 71 |
|
| 72 |
## Provenance
|
| 73 |
|
| 74 |
-
Source material: `
|
| 75 |
-
|
| 76 |
-
reconstruct the raw ASR transcript
|
| 77 |
-
alignment is anchored on output sentence
|
| 78 |
-
|
| 79 |
|
| 80 |
## Reproduction
|
| 81 |
|
| 82 |
```bash
|
| 83 |
-
python3
|
| 84 |
```
|
| 85 |
|
| 86 |
-
Writes `
|
| 87 |
-
`experiments/data/logical-transcripts/bronze.jsonl`.
|
|
|
|
| 51 |
}
|
| 52 |
```
|
| 53 |
|
| 54 |
+
The `instruction`/`input`/`output` schema follows the standard instruction-tuning
|
| 55 |
+
convention, so it can be concatenated with other transliteration datasets for
|
| 56 |
+
training.
|
| 57 |
|
| 58 |
## Task
|
| 59 |
|
|
|
|
| 71 |
|
| 72 |
## Provenance
|
| 73 |
|
| 74 |
+
Source material: 8 `{input_text, output_text}` chunk pairs extracted from a single
|
| 75 |
+
recorded Islamic lecture (Chapter 24, Lecture 16). The concatenated inputs exactly
|
| 76 |
+
reconstruct the raw ASR transcript; the concatenated outputs exactly reconstruct the
|
| 77 |
+
polished scholarly transcript. Sentence alignment is anchored on output sentence
|
| 78 |
+
boundaries via character-level difflib mapping.
|
| 79 |
|
| 80 |
## Reproduction
|
| 81 |
|
| 82 |
```bash
|
| 83 |
+
python3 scripts/convert_golden.py
|
| 84 |
```
|
| 85 |
|
| 86 |
+
Writes `train.jsonl` (golden) and `bronze.jsonl`.
|
|
|