Spaces:
Sleeping
Sleeping
Delete pages/9_📌_Citation.py
Browse files- pages/9_📌_Citation.py +0 -48
pages/9_📌_Citation.py
DELETED
|
@@ -1,48 +0,0 @@
|
|
| 1 |
-
import streamlit as st
|
| 2 |
-
from persist import persist, load_widget_state
|
| 3 |
-
from pathlib import Path
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
global variable_output
|
| 8 |
-
|
| 9 |
-
def main():
|
| 10 |
-
cs_body()
|
| 11 |
-
|
| 12 |
-
def cs_body():
|
| 13 |
-
|
| 14 |
-
st.markdown('# Citation')
|
| 15 |
-
st.write("If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section")
|
| 16 |
-
left, right = st.columns([2,4])
|
| 17 |
-
|
| 18 |
-
#st.markdown('### Model Description')
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
with left:
|
| 22 |
-
st.write("\n")
|
| 23 |
-
st.write("\n")
|
| 24 |
-
st.markdown('### BibTeX:')
|
| 25 |
-
st.write("\n")
|
| 26 |
-
st.write("\n")
|
| 27 |
-
st.write("\n")
|
| 28 |
-
st.write("\n")
|
| 29 |
-
st.write("\n")
|
| 30 |
-
st.write("\n")
|
| 31 |
-
st.markdown('### APA:')
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
with right:
|
| 35 |
-
|
| 36 |
-
st.text_area("", key=persist("bibtex_citation"))
|
| 37 |
-
st.text_area("", key=persist("APA_citation"))
|
| 38 |
-
#st.write("\n")
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
if __name__ == '__main__':
|
| 47 |
-
load_widget_state()
|
| 48 |
-
main()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|