Tristan Thrush commited on
Commit
801318e
·
1 Parent(s): 7688aea

added dataframe sample values

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -45,6 +45,7 @@ with gr.Blocks() as demo:
45
  headers=["Song", "Album", "Artist"],
46
  datatype=["str", "str", "str"],
47
  label="Reccomended Songs",
 
48
  )
49
  demo.load(fn=scatter_plot_fn, outputs=plot)
50
 
 
45
  headers=["Song", "Album", "Artist"],
46
  datatype=["str", "str", "str"],
47
  label="Reccomended Songs",
48
+ value=[["something", "something", "something"], ["something", "something", "something"]] # TODO: replace with actual reccomendations once get_started() is implemeted.
49
  )
50
  demo.load(fn=scatter_plot_fn, outputs=plot)
51