Update README.md

This commit is contained in:
2025-07-13 20:07:27 +02:00
parent 2ea546e037
commit c1aedd0b04

View File

@@ -0,0 +1,15 @@
# Transcription Corrector
This small CLI programm takes an input .txt file, a word list (each line only featuring one word), and the name of an output file and corrects the input based on the closest word match via Levenshtein and Sørensen-Dice distance.
## Usage
For whole files:
```
$ text-correction correct-file -i input.txt -l wordlist.txt -o output.txt
```
For individual words:
```
$ text-correction correct-word -i exampleword
```