Commit ·
c46f09c
1
Parent(s): 6c9518c
add title, icon
Browse files
app.py
CHANGED
|
@@ -1,6 +1,9 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
@st.cache_data
|
| 6 |
def get_results(text):
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
|
| 4 |
+
# Set page title and icon
|
| 5 |
+
st.set_page_config(page_title="Privacy Policy Relation Extraction", page_icon="🐢")
|
| 6 |
+
|
| 7 |
|
| 8 |
@st.cache_data
|
| 9 |
def get_results(text):
|