Andy Janco
commited on
Commit
·
ee202f8
1
Parent(s):
382f42b
Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,10 @@ from spacy.tokens import DocBin, Doc
|
|
6 |
from collections import Counter
|
7 |
import srsly
|
8 |
|
|
|
|
|
|
|
|
|
9 |
st.title('Index and Search a Collection of Documents')
|
10 |
|
11 |
@st.cache
|
|
|
6 |
from collections import Counter
|
7 |
import srsly
|
8 |
|
9 |
+
# Import CSS file
|
10 |
+
with open("scripts/style.css") as f:
|
11 |
+
st.markdown("<style>" + f.read() + "</style>", unsafe_allow_html=True)
|
12 |
+
|
13 |
st.title('Index and Search a Collection of Documents')
|
14 |
|
15 |
@st.cache
|