Ezi Ozoani
commited on
Commit
·
0cf3161
1
Parent(s):
e1f97c2
parsing fixes
Browse files- 1_📝_form.py +3 -4
- middleMan.py +3 -3
1_📝_form.py
CHANGED
|
@@ -168,10 +168,9 @@ def main():
|
|
| 168 |
"beginner_technical_view":bool,
|
| 169 |
"markdown_state":"",
|
| 170 |
|
| 171 |
-
"
|
| 172 |
-
"
|
| 173 |
-
"
|
| 174 |
-
"results":""
|
| 175 |
|
| 176 |
})
|
| 177 |
## getting cache for each warnings
|
|
|
|
| 168 |
"beginner_technical_view":bool,
|
| 169 |
"markdown_state":"",
|
| 170 |
|
| 171 |
+
"testing_Factor": "",
|
| 172 |
+
"testing_Metrics":"",
|
| 173 |
+
"model_results":""
|
|
|
|
| 174 |
|
| 175 |
})
|
| 176 |
## getting cache for each warnings
|
middleMan.py
CHANGED
|
@@ -43,9 +43,9 @@ def parse_into_jinja_markdown():
|
|
| 43 |
paper_link = st.session_state["paper_url"],
|
| 44 |
blog_link = st.session_state["blog_url"],
|
| 45 |
testing_data = st.session_state["testing_data"],
|
| 46 |
-
|
| 47 |
-
results = st.session_state["
|
| 48 |
-
testing_metrics = st.session_state["
|
| 49 |
))
|
| 50 |
|
| 51 |
|
|
|
|
| 43 |
paper_link = st.session_state["paper_url"],
|
| 44 |
blog_link = st.session_state["blog_url"],
|
| 45 |
testing_data = st.session_state["testing_data"],
|
| 46 |
+
testing_factors = st.session_state["testing_Factor"],
|
| 47 |
+
results = st.session_state["model_results"],
|
| 48 |
+
testing_metrics = st.session_state["testing_Metrics"]
|
| 49 |
))
|
| 50 |
|
| 51 |
|