Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import pickle
|
|
4 |
import requests
|
5 |
import base64
|
6 |
|
7 |
-
@st.
|
8 |
def read_model(url):
|
9 |
response = requests.get(url)
|
10 |
open("temp.pkl", "wb").write(response.content)
|
@@ -55,4 +55,4 @@ if st.sidebar.button("Download"):
|
|
55 |
st.markdown(href, unsafe_allow_html=True)
|
56 |
|
57 |
st.title("About")
|
58 |
-
st.subheader("You can tag your input CSV file of theses
|
|
|
4 |
import requests
|
5 |
import base64
|
6 |
|
7 |
+
@st.cache_data
|
8 |
def read_model(url):
|
9 |
response = requests.get(url)
|
10 |
open("temp.pkl", "wb").write(response.content)
|
|
|
55 |
st.markdown(href, unsafe_allow_html=True)
|
56 |
|
57 |
st.title("About")
|
58 |
+
st.subheader("You can tag your input CSV file of LIS theses with topics. The screen will show the output.")
|