Spaces:
Runtime error
Runtime error
Commit
·
40330e2
1
Parent(s):
35a1018
Made title
Browse files
app.py
CHANGED
@@ -5,7 +5,8 @@ from evaluate.utils import launch_gradio_widget
|
|
5 |
with gr.Blocks() as demo:
|
6 |
gr.Markdown(
|
7 |
"""
|
8 |
-
|
|
|
9 |
This is an NLP evaluation metric that records the minimum number of token edits (insertions, deletions, and replacements, all weighted equally) to the prediction string in order to make it exactly match the reference string. Uses identical logic to Levenshtein Edit Distance, except applied to tokens (i.e. individual ints in a list) as opposed to individual characters in a string.
|
10 |
<br/><br/>
|
11 |
*Args*:
|
|
|
5 |
with gr.Blocks() as demo:
|
6 |
gr.Markdown(
|
7 |
"""
|
8 |
+
# Token Edit Distance
|
9 |
+
<br/><br/>
|
10 |
This is an NLP evaluation metric that records the minimum number of token edits (insertions, deletions, and replacements, all weighted equally) to the prediction string in order to make it exactly match the reference string. Uses identical logic to Levenshtein Edit Distance, except applied to tokens (i.e. individual ints in a list) as opposed to individual characters in a string.
|
11 |
<br/><br/>
|
12 |
*Args*:
|