bigcode-starpii / app.py
niteshraj707's picture
Update app.py
6a73134
raw
history blame contribute delete
No virus
250 Bytes
import gradio as gr
import streamlit as st
from transformers import pipeline
pipe = pipeline('bigcode/starpii')
text = st.text_area('enter some text!')
if text:
out = pipe(text)
st.json(out)
#gr.Interface.load("models/bigcode/starpii").launch()