Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ with st.spinner("Downloading Dataset"):
|
|
10 |
data_path = hf_hub.hf_hub_download(repo_id="osbm/prostate158", filename="data.zip", repo_type="dataset")
|
11 |
|
12 |
st.write(data_path)
|
13 |
-
with st.
|
14 |
with zipfile.ZipFile(data_path, 'r') as zip_ref:
|
15 |
zip_ref.extractall(".")
|
16 |
|
|
|
10 |
data_path = hf_hub.hf_hub_download(repo_id="osbm/prostate158", filename="data.zip", repo_type="dataset")
|
11 |
|
12 |
st.write(data_path)
|
13 |
+
with st.spinner("Unzipping..."):
|
14 |
with zipfile.ZipFile(data_path, 'r') as zip_ref:
|
15 |
zip_ref.extractall(".")
|
16 |
|