ashhadahsan commited on
Commit
020acf6
·
1 Parent(s): 9e785e4

check pip version

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -10,6 +10,7 @@ from tensorflow.nn import softmax
10
  import numpy as np
11
  from datetime import datetime
12
  import logging
 
13
 
14
  date = datetime.now().strftime(r"%Y-%m-%d")
15
  model_classes ={
@@ -75,8 +76,9 @@ hide_streamlit_style = """
75
  footer {visibility: hidden;}
76
  </style>
77
  """
78
- st.markdown(hide_streamlit_style, unsafe_allow_html=True)
79
  st.write(st.__version__)
 
80
  ps = st.empty()
81
  if st.button("Process",type="primary"):
82
  cancel_button=st.empty()
 
10
  import numpy as np
11
  from datetime import datetime
12
  import logging
13
+ import pip
14
 
15
  date = datetime.now().strftime(r"%Y-%m-%d")
16
  model_classes ={
 
76
  footer {visibility: hidden;}
77
  </style>
78
  """
79
+ # st.markdown(hide_streamlit_style, unsafe_allow_html=True)
80
  st.write(st.__version__)
81
+ st.write(pip.__version__)
82
  ps = st.empty()
83
  if st.button("Process",type="primary"):
84
  cancel_button=st.empty()