Model_Cards_Writing_Tool / pages /14_πŸ“š_Glossary.py
Ezi Ozoani
let the batch patching begin: fixing (i) and textual information
22ee960
raw
history blame contribute delete
No virus
450 Bytes
import streamlit as st
from persist import persist, load_widget_state
global variable_output
def main():
cs_body()
def cs_body():
st.markdown('# Glossary [optional]')
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"))
if __name__ == '__main__':
load_widget_state()
main()