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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,8 +4,8 @@ import gradio as gr
4
 
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"],
8
- 'c6': ["This is col 6"], 'c7': ["This is col 7"]}
9
  df = pd.DataFrame(data=d)
10
  return df
11
 
 
4
 
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