IlyaUsmanov commited on
Commit
a9b547e
1 Parent(s): b7f0a22

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.markdown("### Hello, world!")
4
+ st.markdown("<img width=200px src='https://rozetked.me/images/uploads/dwoilp3BVjlE.jpg'>", unsafe_allow_html=True)
5
+
6
+ from transformers import pipeline
7
+
8
+ pipe = pipeline("ner", "Davlan/distilbert-base-multilingual-cased-ner-hrl")
9
+
10
+ text = st.text_area("TEXT HERE")
11
+
12
+ st.markdown(f"{pipe(text)}")