Amatak commited on
Commit
bcf16ae
·
verified ·
1 Parent(s): 9a523df

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -1,10 +1,8 @@
1
  import torch
2
  import streamlit as st
3
  from transformers import pipeline
 
4
 
5
- pipe = pipeline("sentiment-analysis")
6
- text = st.text_area("enter some texts")
7
 
8
- if text:
9
- out = pipe(text)
10
- st.json(out)
 
1
  import torch
2
  import streamlit as st
3
  from transformers import pipeline
4
+ from datasets import load_dataset
5
 
6
+ ds = load_dataset("Marqo/marqo-GS-10M")
 
7
 
8
+ st.dataframe(ds)