Margerie commited on
Commit
0df9202
·
verified ·
1 Parent(s): b371cb8

Delete pages/14_📚_Glossary.py

Browse files
Files changed (1) hide show
  1. pages/14_📚_Glossary.py +0 -24
pages/14_📚_Glossary.py DELETED
@@ -1,24 +0,0 @@
1
- import streamlit as st
2
- from persist import persist, load_widget_state
3
-
4
-
5
- global variable_output
6
-
7
- def main():
8
- cs_body()
9
-
10
-
11
-
12
- def cs_body():
13
-
14
- st.markdown('# Glossary [optional]')
15
- st.text_area("Terms used in the model card that need to be clearly defined in order to be accessible across audiences go here.",height = 200, key=persist("Glossary"))
16
-
17
-
18
-
19
-
20
-
21
-
22
- if __name__ == '__main__':
23
- load_widget_state()
24
- main()