File size: 604 Bytes
083168f 754e93a 083168f 7be5743 083168f f8a41b8 083168f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import streamlit as st
from pii import PII_IDENTIFIER
pii_id_instance = PII_IDENTIFIER()
st.title("Personal data ID")
text_to_predict = st.text_input('Enter text :: ', 'Mein Name ist MARK DEF1100 Noah Schmidt noahschmidt@debank.com und ich lebe in Irbid with number swift WWBADE3AXXX 6282368558 DE89370400440532013000 +491635551584. Allianz Versicherungs-Aktiengesellschaft Allianz ® Nachtrag vom 30.11.2014 zur')
if st.button("Mask Data"):
print(text_to_predict)
out = pii_id_instance.identify(text_to_predict)
st.write(out['anonymized_text'])
### TO RUN :: streamlit run ui_app.py |