alignment
alignment #
Utility method to visualize the alignment between one or more reference and hypothesis pairs.
visualize_alignment #
visualize_alignment(
output, show_measures=True, skip_correct=True
)
Visualize the output of jiwer.process_words and
jiwer.process_characters. The visualization
shows the alignment between each processed reference and hypothesis pair.
If show_measures=True
, the output string will also contain all measures in the
output.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
output |
Union[WordOutput, CharacterOutput]
|
The processed output of reference and hypothesis pair(s). |
required |
show_measures |
bool
|
If enabled, the visualization will include measures like the WER or CER |
True
|
skip_correct |
bool
|
If enabled, the visualization will exclude correct reference and hypothesis pairs |
True
|
Returns:
Type | Description |
---|---|
str
|
The visualization as a string |
Example
This code snippet
import jiwer
out = jiwer.process_words(
["short one here", "quite a bit of longer sentence"],
["shoe order one", "quite bit of an even longest sentence here"],
)
print(jiwer.visualize_alignment(out))
sentence 1
REF: # short one here
HYP: shoe order one *
I S D
sentence 2
REF: quite a bit of # # longer sentence #
HYP: quite * bit of an even longest sentence here
D I I S I
number of sentences: 2
substitutions=2 deletions=2 insertions=4 hits=5
mer=61.54%
wil=74.75%
wip=25.25%
wer=88.89%
When show_measures=False
, only the alignment will be printed:
sentence 1
REF: # short one here
HYP: shoe order one *
I S D
sentence 2
REF: quite a bit of # # longer sentence #
HYP: quite * bit of an even longest sentence here
D I I S I
Source code in jiwer/alignment.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
|