dar-tau commited on
Commit
d4b1cb2
·
verified ·
1 Parent(s): cbc70bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -188,7 +188,7 @@ with gr.Blocks(theme=gr.themes.Default(), css='styles.css') as demo:
188
  dataset = dataset.shuffle(buffer_size=2000).take(num_examples)
189
  dataset = [row[info['text_col']] for row in dataset]
190
  gr.Examples(dataset, [original_prompt_raw, *tokens_container],
191
- fn=lambda output: output + [gr.Button(visible=False) for _ in range(MAX_PROMPT_TOKENS)],
192
  run_on_click=True, cache_examples=False)
193
 
194
  with gr.Group():
 
188
  dataset = dataset.shuffle(buffer_size=2000).take(num_examples)
189
  dataset = [row[info['text_col']] for row in dataset]
190
  gr.Examples(dataset, [original_prompt_raw, *tokens_container],
191
+ fn=lambda output: [o + [gr.Button(visible=False) for _ in range(MAX_PROMPT_TOKENS)] for o in output],
192
  run_on_click=True, cache_examples=False)
193
 
194
  with gr.Group():