EliottZemour commited on
Commit
5e02842
1 Parent(s): be193e7
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -41,8 +41,9 @@ css = """
41
  """
42
 
43
 
44
- md_text = "<h1 style='text-align: center; margin-bottom: 1rem'>Generating Yelp reviews with BART-base ⭐⭐⭐</h1>"
45
- md_desc = """This space demonstrates how synthetic data generation can be performed on natural language columns, as found in the Yelp reviews dataset.
 
46
 
47
  | review id | stars | useful | funny | cool | text |
48
  |:---:|:---:|:---:|:---:|:---:|:---:|
@@ -64,7 +65,6 @@ demo = gr.Blocks(css=css)
64
  with demo:
65
  with gr.Row():
66
  gr.Markdown(md_text)
67
- gr.Markdown(md_desc)
68
 
69
  with gr.Row():
70
  stars = gr.inputs.Slider(minimum=0, maximum=5, step=1, default=0, label="stars")
 
41
  """
42
 
43
 
44
+ md_text = """<h1 style='text-align: center; margin-bottom: 1rem'>Generating Yelp reviews with BART-base ⭐⭐⭐</h1>
45
+
46
+ This space demonstrates how synthetic data generation can be performed on natural language columns, as found in the Yelp reviews dataset.
47
 
48
  | review id | stars | useful | funny | cool | text |
49
  |:---:|:---:|:---:|:---:|:---:|:---:|
 
65
  with demo:
66
  with gr.Row():
67
  gr.Markdown(md_text)
 
68
 
69
  with gr.Row():
70
  stars = gr.inputs.Slider(minimum=0, maximum=5, step=1, default=0, label="stars")