ginic commited on
Commit
77256bf
1 Parent(s): a7430ba

Better readability in readme example code

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -52,7 +52,9 @@ The computation returns a dictionary with the following key and values:
52
  Simplest use case to compute phone error rates between two IPA strings:
53
  ```python
54
  >>> phone_distance.compute(predictions=["bob", "ði", "spin"], references=["pop", "ðə", "spʰin"])
55
- {'phone_error_rates': [0.6666666666666666, 0.5, 0.25], 'mean_phone_error_rate': 0.47222222222222215, 'phone_feature_error_rates': [0.08333333333333333, 0.125, 0.041666666666666664], 'mean_phone_feature_error_rate': 0.08333333333333333, 'feature_error_rates': [0.027777777777777776, 0.0625, 0.30208333333333337], 'mean_feature_error_rate': 0.13078703703703706}
 
 
56
  ```
57
 
58
  Normalize phone feature error rate by the length of the reference string:
 
52
  Simplest use case to compute phone error rates between two IPA strings:
53
  ```python
54
  >>> phone_distance.compute(predictions=["bob", "ði", "spin"], references=["pop", "ðə", "spʰin"])
55
+ {'phone_error_rates': [0.6666666666666666, 0.5, 0.25], 'mean_phone_error_rate': 0.47222222222222215,
56
+ 'phone_feature_error_rates': [0.08333333333333333, 0.125, 0.041666666666666664], 'mean_phone_feature_error_rate': 0.08333333333333333,
57
+ 'feature_error_rates': [0.027777777777777776, 0.0625, 0.30208333333333337], 'mean_feature_error_rate': 0.13078703703703706}
58
  ```
59
 
60
  Normalize phone feature error rate by the length of the reference string: