Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
small updates
Browse files- .streamlit/config.toml +6 -5
- pages/3_β_Extract_Demo.py +1 -1
.streamlit/config.toml
CHANGED
@@ -5,11 +5,12 @@ backgroundColor="#FFFFFF"
|
|
5 |
secondaryBackgroundColor="#F0F2F6"
|
6 |
textColor="#262730"
|
7 |
font="sans serif"
|
8 |
-
|
9 |
-
|
10 |
-
#
|
11 |
-
#
|
12 |
-
#
|
|
|
13 |
|
14 |
[server]
|
15 |
maxUploadSize = 200
|
|
|
5 |
secondaryBackgroundColor="#F0F2F6"
|
6 |
textColor="#262730"
|
7 |
font="sans serif"
|
8 |
+
|
9 |
+
[client]
|
10 |
+
# Controls whether uncaught app exceptions are displayed in the browser. By default, this is set to True and Streamlit displays app exceptions and associated tracebacks in the browser.
|
11 |
+
# If set to False, an exception will result in a generic message being shown in the browser, and exceptions and tracebacks will be printed to the console only.
|
12 |
+
# Default: true
|
13 |
+
showErrorDetails = false
|
14 |
|
15 |
[server]
|
16 |
maxUploadSize = 200
|
pages/3_β_Extract_Demo.py
CHANGED
@@ -163,7 +163,7 @@ if button:
|
|
163 |
'Label': []
|
164 |
}
|
165 |
|
166 |
-
st.header('π
|
167 |
for span in doc.spans['sc']:
|
168 |
data['Label'].append(span.label_)
|
169 |
data['Text'].append(span.text)
|
|
|
163 |
'Label': []
|
164 |
}
|
165 |
|
166 |
+
st.header('π Extracted Information')
|
167 |
for span in doc.spans['sc']:
|
168 |
data['Label'].append(span.label_)
|
169 |
data['Text'].append(span.text)
|