Alexander Seifert commited on
Commit
d5ecc0d
1 Parent(s): fca8d88
Files changed (1) hide show
  1. subpages/home.py +4 -1
subpages/home.py CHANGED
@@ -54,11 +54,14 @@ class HomePage(Page):
54
  st.write(
55
  "**Error Analysis is an important but often overlooked part of the data science project lifecycle**, for which there is still very little tooling available. Practitioners tend to write throwaway code or, worse, skip this crucial step of understanding their models' errors altogether. This project tries to provide an **extensive toolkit to probe any NER model/dataset combination**, find labeling errors and understand the models' and datasets' limitations, leading the user on her way to further **improving both model AND dataset**."
56
  )
 
 
 
57
  st.write(
58
  "_Caveat: Even though everything is customizable here, I haven't tested this app much with different models/datasets._"
59
  )
60
 
61
- col1, _, col2a, col2b = st.columns([1, 0.05, 0.15, 0.15])
62
 
63
  with col1:
64
  random_form_key = f"settings-{random.randint(0, 100000)}"
 
54
  st.write(
55
  "**Error Analysis is an important but often overlooked part of the data science project lifecycle**, for which there is still very little tooling available. Practitioners tend to write throwaway code or, worse, skip this crucial step of understanding their models' errors altogether. This project tries to provide an **extensive toolkit to probe any NER model/dataset combination**, find labeling errors and understand the models' and datasets' limitations, leading the user on her way to further **improving both model AND dataset**."
56
  )
57
+ st.write(
58
+ "**Note:** This Space requires a fair amount of computation, so please be patient with the loading animations. 🙏 I am caching as much as possible, so after the first wait most things should be precomputed."
59
+ )
60
  st.write(
61
  "_Caveat: Even though everything is customizable here, I haven't tested this app much with different models/datasets._"
62
  )
63
 
64
+ col1, _, col2a, col2b = st.columns([0.8, 0.05, 0.15, 0.15])
65
 
66
  with col1:
67
  random_form_key = f"settings-{random.randint(0, 100000)}"