dar-tau commited on
Commit
de57b09
1 Parent(s): 1c5cc8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -186,9 +186,9 @@ with gr.Blocks(theme=gr.themes.Default(), css='styles.css') as demo:
186
  if 'filter' in info:
187
  dataset = dataset.filter(info['filter'])
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():
 
186
  if 'filter' in info:
187
  dataset = dataset.filter(info['filter'])
188
  dataset = dataset.shuffle(buffer_size=2000).take(num_examples)
189
+ dataset = [[row[info['text_col']]] + ['' for _ in range(MAX_PROMPT_TOKENS)] for row in dataset]
190
  gr.Examples(dataset, [original_prompt_raw, *tokens_container],
191
+ fn=lambda output: [[o[0]] + [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():