da03 commited on
Commit
b2ef87d
1 Parent(s): 70487ef
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -58,8 +58,8 @@ demo = gr.Interface(
58
  gr.Textbox(label='Predicted Product'),
59
  gr.HTML(label='Result Message')
60
  ],
61
- title='GPT-2 Multiplication Calculator',
62
- description='This demo uses GPT-2 to directly predict the product of two numbers without using any intermediate steps.',
63
  article="""
64
  ### Additional Resources
65
  - [Paper: From Explicit CoT to Implicit CoT: Learning to Internalize CoT Step by Step](https://arxiv.org/pdf/2405.14838)
 
58
  gr.Textbox(label='Predicted Product'),
59
  gr.HTML(label='Result Message')
60
  ],
61
+ title='GPT-2 Direct Multiplication Calculator (Without Using Chain-of-Thought)',
62
+ description='This demo uses GPT-2 to directly predict the product of two numbers without using any intermediate steps. The GPT-2 is finetuned to internalize chain-of-thought reasoning in its hidden states, using our stepwise internalization approach detailed in the paper below.',
63
  article="""
64
  ### Additional Resources
65
  - [Paper: From Explicit CoT to Implicit CoT: Learning to Internalize CoT Step by Step](https://arxiv.org/pdf/2405.14838)