Erva Ulusoy commited on
Commit
e52ccff
·
1 Parent(s): 6191890

try to discard setup.sh

Browse files
Files changed (2) hide show
  1. ProtHGT_app.py +6 -6
  2. requirements.txt +3 -0
ProtHGT_app.py CHANGED
@@ -1,12 +1,12 @@
1
  import os
2
  import streamlit as st
3
 
4
- with st.spinner("Please wait while we prepare the environment. This may take a few minutes only on the first run..."):
5
- # Run setup script if not already executed
6
- if not os.path.exists(".setup_done"):
7
- os.system("bash setup.sh")
8
- with open(".setup_done", "w") as f:
9
- f.write("done")
10
 
11
  import streamlit.components.v1 as components
12
  import os
 
1
  import os
2
  import streamlit as st
3
 
4
+ # with st.spinner("Please wait while we prepare the environment. This may take a few minutes only on the first run..."):
5
+ # # Run setup script if not already executed
6
+ # if not os.path.exists(".setup_done"):
7
+ # os.system("bash setup.sh")
8
+ # with open(".setup_done", "w") as f:
9
+ # f.write("done")
10
 
11
  import streamlit.components.v1 as components
12
  import os
requirements.txt CHANGED
@@ -1,4 +1,7 @@
 
1
  pandas
2
  torch==1.12.1
 
 
3
  torch_geometric==2.2.0
4
  gdown
 
1
+ numpy
2
  pandas
3
  torch==1.12.1
4
+ torch_sparse==0.6.18
5
+ torch_scatter==2.1.2
6
  torch_geometric==2.2.0
7
  gdown