ashrestha commited on
Commit
75ce90c
1 Parent(s): 1256802

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ if submit_button:
24
  'x': {'field': 'scores', 'type': 'quantitative'},
25
  'y': {'field': 'labels', 'type': 'nominal'},
26
  },
27
- }, use_container_width=True)
28
  else:
29
  out = f"Top predicted labels are {', '.join(p for p in pred['labels'][0:2])}"
30
 
 
24
  'x': {'field': 'scores', 'type': 'quantitative'},
25
  'y': {'field': 'labels', 'type': 'nominal'},
26
  },
27
+ }, use_container_width=True, height=250})
28
  else:
29
  out = f"Top predicted labels are {', '.join(p for p in pred['labels'][0:2])}"
30