awacke1 commited on
Commit
4ba2c98
Β·
verified Β·
1 Parent(s): a033cb4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -148,7 +148,15 @@ def format_examples_for_text_area(examples):
148
 
149
  # πŸ–₯️ Streamlit App
150
  def main():
151
- st.title("πŸ€– Self-Taught Reasoner (STaR) Demonstration")
 
 
 
 
 
 
 
 
152
 
153
  # 🧩 Initialize the Self-Taught Reasoner
154
  if 'star' not in st.session_state:
 
148
 
149
  # πŸ–₯️ Streamlit App
150
  def main():
151
+ st.title("πŸ€– Self-Taught Reasoners (STaR)")
152
+ st.markdown('''
153
+ # πŸ“„ Papers:
154
+ 1. 🀫🌟 Quiet-STaR: Language Models Can Teach Themselves to Think πŸ€” Before Speaking πŸ—£οΈ
155
+ - πŸ”— https://arxiv.org/abs/2403.09629 - πŸ“„ https://arxiv.org/pdf/2403.09629
156
+ 2. πŸŒŸπŸ€” STaR: Self-Taught Reasoner - Bootstrapping Reasoning With Reasoning
157
+ - πŸ”— https://arxiv.org/abs/2203.14465 - πŸ“„ https://arxiv.org/pdf/2203.14465
158
+ ''')
159
+
160
 
161
  # 🧩 Initialize the Self-Taught Reasoner
162
  if 'star' not in st.session_state: