kitkeat's picture
Update app.py
e1c708f
raw
history blame
217 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline(model = 'kitkeat/distilbert-based-uncased-argumentativewriting')
text = st.text_area('Yo, type here')
if text:
out = pipe(text)
print(out)