Margerie commited on
Commit
1171cb2
·
verified ·
1 Parent(s): a6a47ee

Delete pages/6_🔬_Model_Evaluation.py

Browse files
Files changed (1) hide show
  1. pages/6_🔬_Model_Evaluation.py +0 -66
pages/6_🔬_Model_Evaluation.py DELETED
@@ -1,66 +0,0 @@
1
- import streamlit as st
2
- from persist import persist, load_widget_state
3
- from pathlib import Path
4
-
5
- from middleMan import apply_view,writingPrompt
6
-
7
- global variable_output
8
-
9
- def main():
10
- cs_body()
11
-
12
-
13
- def cs_body():
14
-
15
- #stateVariable = 'Model_Eval'
16
- #help_text ='Detail the Evaluation Results for this model'
17
- #col1.header('Model Evaluation')
18
- st.markdown('# Evaluation')
19
- st.text_area(" This section describes the evaluation protocols and provides the results. ",help="Detail the Evaluation Results for this model")
20
- st.markdown('## Testing Data, Factors & Metrics:')
21
- left, right = st.columns([2,4])
22
-
23
- #st.markdown('### Model Description')
24
-
25
-
26
- with left:
27
- st.write("\n")
28
- st.write("\n")
29
- st.markdown('#### Testing Data:')
30
- st.write("\n")
31
- st.write("\n")
32
- st.write("\n")
33
- st.write("\n")
34
- st.write("\n")
35
- st.write("\n")
36
- #st.write("\n")
37
- st.markdown('#### Factors:')
38
- st.write("\n")
39
- st.write("\n")
40
- st.write("\n")
41
- st.write("\n")
42
- st.write("\n")
43
- st.write("\n")
44
- st.markdown('#### Metrics:')
45
- st.write("\n")
46
- st.write("\n")
47
- st.write("\n")
48
- st.write("\n")
49
- st.write("\n")
50
- st.markdown('#### Results:')
51
-
52
- with right:
53
- #soutput_jinja = parse_into_jinja_markdown()
54
- st.text_area("", help="Ideally this links to a Dataset Card.",key=persist("Testing_Data"))
55
- #st.write("\n")
56
- st.text_area("",help="What are the foreseeable characteristics that will influence how the model behaves? This includes domain and context, as well as population subgroups.",key=persist("Factors"))
57
- st.text_area("", help="What metrics will be used for evaluation in light of tradeoffs between different errors?", key=persist("Metrics"))
58
- st.text_area("", key=persist("Model_Results"))
59
-
60
-
61
-
62
-
63
-
64
- if __name__ == '__main__':
65
- load_widget_state()
66
- main()