YuchenZeng commited on
Commit
ab134ef
1 Parent(s): 4eaf4d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -5,7 +5,8 @@ import gradio as gr
5
  def example_fn(text):
6
  d = {'c1': ["This is col 1"], 'c2': ["This is col 2"], 'c3': ["This is col 3"],
7
  'c4': ["This is col 4"], 'c5': ["This is col 5"], 'c6': ["This is col 6"],
8
- 'c7': ["This is col 7"], 'c8': ["This is col 8"], 'c9': ["This is col 9"]}
 
9
  df = pd.DataFrame(data=d)
10
  return df
11
 
 
5
  def example_fn(text):
6
  d = {'c1': ["This is col 1"], 'c2': ["This is col 2"], 'c3': ["This is col 3"],
7
  'c4': ["This is col 4"], 'c5': ["This is col 5"], 'c6': ["This is col 6"],
8
+ 'c7': ["This is col 7"], 'c8': ["This is col 8"], 'c9': ["This is col 9"],
9
+ 'c10': ["This is col 10"], 'c11': ["This is col 11"], 'c12': ["This is col 12"]}
10
  df = pd.DataFrame(data=d)
11
  return df
12