File size: 996 Bytes
2d5ffb9
 
25cf4f2
2d5ffb9
 
 
 
 
 
 
 
 
 
22ee960
2d5ffb9
 
 
 
 
 
 
 
 
 
 
 
 
22ee960
2d5ffb9
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import streamlit as st
from persist import persist, load_widget_state



global variable_output

def main():
    cs_body()

def cs_body():
    
    st.markdown('# Bias, Risks, and Limitations')
    st.text_area("What are the known or foreseeable issues stemming from this model? Use this section to convey both technical and sociotechnical limitations",help="Provide an overview of the possible Limitations and Risks that may be associated with this model", key=persist("Model_Limits_n_Risks"), )
    left, right = st.columns([2,4])
    
    #st.markdown('### Model Description')
    

    with left: 
        st.write("\n")
        st.write("\n")
        st.markdown('### Recommendations:')
        
        
    with right:
        #soutput_jinja = parse_into_jinja_markdown()
        st.text_area("",help="How can the known or foreseeable issues be addressed?", key=persist("Recommendations"))
        #st.write("\n")
  
    
    

if __name__ == '__main__':
    load_widget_state()
    main()