John Graham Reynolds commited on
Commit
86d85c0
·
1 Parent(s): ec439ff

update model card reference

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -20,7 +20,7 @@ EXAMPLE_PROMPTS = [
20
  TITLE = "CyberSolve LinAlg 1.2"
21
  DESCRIPTION= """Welcome to the 🤖CyberSolve LinAlg 1.2🧠 demo! \n
22
 
23
- **Overview and Usage**: This 🤗 Space is designed to demo the abilities of the **CyberSolve LinAlg 1.2** text-to-text language model. The model card can be found [here](%s).
24
 
25
  Specifically, the **CyberSolve LinAlg 1.x** family of models
26
  are downstream versions of the 783M parameter FLAN-T5 text-to-text transformer, fine-tuned on the Google DeepMind Mathematics dataset for the purpose of solving linear equations of a single variable.
@@ -54,11 +54,12 @@ QUEUE_SIZE = 20 # maximize this value for adding enough places in the global que
54
  # global_semaphore = get_global_semaphore()
55
 
56
  st.set_page_config(layout="wide")
57
- url = "https://huggingface.co/MarioBarbeque/CyberSolve-LinAlg-1.2"
58
 
59
  st.title(TITLE)
60
  st.image("calabi_yau.jpeg", caption="Teaching AI to understand Mathematics", width=400) # TODO add a Vanderbilt related picture to the head of our Space!
61
- st.markdown(DESCRIPTION % url)
 
62
  st.markdown("\n")
63
 
64
  # use this to format later
 
20
  TITLE = "CyberSolve LinAlg 1.2"
21
  DESCRIPTION= """Welcome to the 🤖CyberSolve LinAlg 1.2🧠 demo! \n
22
 
23
+ **Overview and Usage**: This 🤗 Space is designed to demo the abilities of the **CyberSolve LinAlg 1.2** text-to-text language model. Model card: *MarioBarbeque/CyberSolve-LinAlg-1.2*
24
 
25
  Specifically, the **CyberSolve LinAlg 1.x** family of models
26
  are downstream versions of the 783M parameter FLAN-T5 text-to-text transformer, fine-tuned on the Google DeepMind Mathematics dataset for the purpose of solving linear equations of a single variable.
 
54
  # global_semaphore = get_global_semaphore()
55
 
56
  st.set_page_config(layout="wide")
57
+ # url = "https://huggingface.co/MarioBarbeque/CyberSolve-LinAlg-1.2"
58
 
59
  st.title(TITLE)
60
  st.image("calabi_yau.jpeg", caption="Teaching AI to understand Mathematics", width=400) # TODO add a Vanderbilt related picture to the head of our Space!
61
+ # st.markdown(DESCRIPTION % url)
62
+ st.markdown(DESCRIPTION)
63
  st.markdown("\n")
64
 
65
  # use this to format later