lvwerra HF staff commited on
Commit
7ceaf30
1 Parent(s): b5095e1

Update Space (evaluate main: 05209ece)

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -10,6 +10,25 @@ pinned: false
10
  tags:
11
  - evaluate
12
  - metric
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  ---
14
 
15
  # Metric Card for CER
 
10
  tags:
11
  - evaluate
12
  - metric
13
+ description: >-
14
+ Character error rate (CER) is a common metric of the performance of an automatic speech recognition system.
15
+
16
+ CER is similar to Word Error Rate (WER), but operates on character instead of word. Please refer to docs of WER for further information.
17
+
18
+ Character error rate can be computed as:
19
+
20
+ CER = (S + D + I) / N = (S + D + I) / (S + D + C)
21
+
22
+ where
23
+
24
+ S is the number of substitutions,
25
+ D is the number of deletions,
26
+ I is the number of insertions,
27
+ C is the number of correct characters,
28
+ N is the number of characters in the reference (N=S+D+C).
29
+
30
+ CER's output is not always a number between 0 and 1, in particular when there is a high number of insertions. This value is often associated to the percentage of characters that were incorrectly predicted. The lower the value, the better the
31
+ performance of the ASR system with a CER of 0 being a perfect score.
32
  ---
33
 
34
  # Metric Card for CER