Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -70,6 +70,8 @@ if uploaded_zip_file is not None:
|
|
70 |
os.makedirs(temp_dir, exist_ok=True)
|
71 |
full_path = os.path.abspath(temp_dir)
|
72 |
st.success("Zip file uploaded successfully")
|
|
|
|
|
73 |
# st.write(f"Temporary directory path: {full_path}")
|
74 |
|
75 |
with zipfile.ZipFile(uploaded_zip_file, "r") as zip_ref:
|
@@ -85,8 +87,6 @@ if uploaded_zip_file is not None:
|
|
85 |
if st.button("Analyze"):
|
86 |
|
87 |
st.success("Analysis started (expected time: 5 mins)")
|
88 |
-
|
89 |
-
install_dependencies()
|
90 |
run_inference()
|
91 |
|
92 |
# Assuming the 'outputs' directory is located at "/home/user/app/C2C/comp2comp/outputs"
|
|
|
70 |
os.makedirs(temp_dir, exist_ok=True)
|
71 |
full_path = os.path.abspath(temp_dir)
|
72 |
st.success("Zip file uploaded successfully")
|
73 |
+
|
74 |
+
install_dependencies()
|
75 |
# st.write(f"Temporary directory path: {full_path}")
|
76 |
|
77 |
with zipfile.ZipFile(uploaded_zip_file, "r") as zip_ref:
|
|
|
87 |
if st.button("Analyze"):
|
88 |
|
89 |
st.success("Analysis started (expected time: 5 mins)")
|
|
|
|
|
90 |
run_inference()
|
91 |
|
92 |
# Assuming the 'outputs' directory is located at "/home/user/app/C2C/comp2comp/outputs"
|