Model_Cards_Writing_Tool / pages /11_ πŸ“¬_Model_Card_Contact.py
Ezi Ozoani
let the batch patching begin: fixing (i) and textual information
22ee960
raw
history blame contribute delete
No virus
447 Bytes
import streamlit as st
from persist import persist, load_widget_state
#from specific_extraction import extract_it
global variable_output
def main():
cs_body()
def cs_body():
st.markdown('# Model Card Contact')
st.text_area("How can people who have updates to the Model Card contact the authors?", key=persist("Model_card_contact"), )
if __name__ == '__main__':
load_widget_state()
main()