mikeee commited on
Commit
f89ffaf
·
1 Parent(s): faaa17d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,5 +1,9 @@
1
  import gradio as gr
2
  import pandas as pd
 
 
 
 
3
 
4
  def fn(input=""):
5
  df = pd.DataFrame(data={'x': [1, 2], 'y': [3, 4], "cos": [0.1111, 0.51111]})
@@ -25,7 +29,7 @@ iface = gr.Interface(
25
  title="Test dataframe and html",
26
  # description="Test dataframe and html",
27
  examples=["a", "b"],
28
- layout="vertical",
29
  )
30
 
31
  iface.launch(share=False, debug=True)
 
1
  import gradio as gr
2
  import pandas as pd
3
+ from loguru import logger
4
+
5
+ logger.debug("debug {}", gr.__version__)
6
+ logger.info("info {}", gr.__version__)
7
 
8
  def fn(input=""):
9
  df = pd.DataFrame(data={'x': [1, 2], 'y': [3, 4], "cos": [0.1111, 0.51111]})
 
29
  title="Test dataframe and html",
30
  # description="Test dataframe and html",
31
  examples=["a", "b"],
32
+ layout="vertical", # unaligned horizontal vertical
33
  )
34
 
35
  iface.launch(share=False, debug=True)