Spaces:
Runtime error
Runtime error
Neal Caren
commited on
Commit
•
a83230e
1
Parent(s):
063a32e
fonting
Browse files
app.py
CHANGED
@@ -17,6 +17,20 @@ import requests
|
|
17 |
from PIL import Image
|
18 |
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
nltk.download('punkt')
|
21 |
|
22 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
|
|
17 |
from PIL import Image
|
18 |
|
19 |
|
20 |
+
# Trying to figure out some CSS stuff
|
21 |
+
|
22 |
+
st.markdown(
|
23 |
+
"""
|
24 |
+
<style>
|
25 |
+
.streamlit-expanderHeader {
|
26 |
+
font-size: x-large;
|
27 |
+
}
|
28 |
+
</style>
|
29 |
+
""",
|
30 |
+
unsafe_allow_html=True,
|
31 |
+
)
|
32 |
+
|
33 |
+
|
34 |
nltk.download('punkt')
|
35 |
|
36 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|