Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,6 +4,18 @@ from refined.inference.processor import Refined
|
|
| 4 |
import requests
|
| 5 |
import json
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
# Sidebar
|
| 8 |
st.sidebar.image("logo-wordlift.png")
|
| 9 |
|
|
|
|
| 4 |
import requests
|
| 5 |
import json
|
| 6 |
|
| 7 |
+
# Page config
|
| 8 |
+
st.set_page_config(
|
| 9 |
+
page_title="Entity Linking by WordLift",
|
| 10 |
+
page_icon="fav-ico.png",
|
| 11 |
+
layout="wide",
|
| 12 |
+
initial_sidebar_state="collapsed",
|
| 13 |
+
menu_items={
|
| 14 |
+
'Get Help': 'https://wordlift.io/book-a-demo/',
|
| 15 |
+
'About': "# This is a demo app for NEL/NED/NER and SEO"
|
| 16 |
+
}
|
| 17 |
+
)
|
| 18 |
+
|
| 19 |
# Sidebar
|
| 20 |
st.sidebar.image("logo-wordlift.png")
|
| 21 |
|