Spaces:
Sleeping
Sleeping
File size: 1,102 Bytes
73ab035 da5284a 73ab035 da5284a b3dae4d 8d9d859 dffcb4b 6c6b62c da5284a 8d9d859 da5284a b8b10e9 da5284a e324339 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
try:
import werpy
import gradio as gr
except ImportError as e:
print(f"An error occurred while importing modules: {str(e)}")
exit()
def word_error_rate(reference, hypothesis):
try:
normalized_reference = werpy.normalize(reference)
normalized_hypothesis = werpy.normalize(hypothesis)
wer_result = werpy.wer(normalized_reference, normalized_hypothesis)
return wer_result
except Exception as e:
return f"An error occurred: {str(e)}"
title = "Word Error Rate Calculator"
description = "A simple application to quickly calculate the Word Error Rate (WER) powered by <a href='https://pypi.org/project/werpy/'>werpy</a>."
# Define the input and output interfaces
input_reference = gr.Textbox(lines=2, label="Input Reference Text")
input_hypothesis = gr.Textbox(lines=2, label="Input Hypothesis Text")
output_wer = gr.Number(label="Word Error Rate")
iface = gr.Interface(
fn = word_error_rate,
inputs = [input_reference, input_hypothesis],
outputs = output_wer,
title = title,
description = description
)
iface.launch()
|