Spaces:
Sleeping
Sleeping
fixed typos
Browse files- app.py +1 -1
- constants.py +1 -1
app.py
CHANGED
@@ -44,7 +44,7 @@ if __name__ == "__main__":
|
|
44 |
)
|
45 |
|
46 |
st.write(APP_INTRO)
|
47 |
-
explanation_tab, comparision_tab = st.tabs(["📙 Explanation", "⚖️
|
48 |
|
49 |
with explanation_tab:
|
50 |
st.write(EVAL_FUNCTION_INTRO)
|
|
|
44 |
)
|
45 |
|
46 |
st.write(APP_INTRO)
|
47 |
+
explanation_tab, comparision_tab = st.tabs(["📙 Explanation", "⚖️ Comparison"])
|
48 |
|
49 |
with explanation_tab:
|
50 |
st.write(EVAL_FUNCTION_INTRO)
|
constants.py
CHANGED
@@ -25,7 +25,7 @@ span_ner_object = {"start_offset": 3, "end_offset":5, "label":"label_name"}
|
|
25 |
|
26 |
Comparing the ground truth and predicted span objects we get the following broad categories of cases (detailed explanation can be found [here](https://www.davidsbatista.net/blog/2018/05/09/Named_Entity_Evaluation/))
|
27 |
|
28 |
-
#####
|
29 |
|
30 |
| Category | Explanation |
|
31 |
| --------------- | ------------------------------------------------------------------------ |
|
|
|
25 |
|
26 |
Comparing the ground truth and predicted span objects we get the following broad categories of cases (detailed explanation can be found [here](https://www.davidsbatista.net/blog/2018/05/09/Named_Entity_Evaluation/))
|
27 |
|
28 |
+
##### Comparison Cases
|
29 |
|
30 |
| Category | Explanation |
|
31 |
| --------------- | ------------------------------------------------------------------------ |
|