bllin001 commited on
Commit
6ac5140
·
verified ·
1 Parent(s): c753243

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -59,8 +59,8 @@ if uploaded_file:
59
  # mmd_path = os.path.join('files', output_file)
60
  mmd_path = f'streamlit/files/{output_file}'
61
 
62
- #with open(input_path, 'wb') as f:
63
- #f.write(uploaded_file.getbuffer())
64
 
65
  # Load the model
66
  @st.cache_resource(show_spinner=False)
 
59
  # mmd_path = os.path.join('files', output_file)
60
  mmd_path = f'streamlit/files/{output_file}'
61
 
62
+ with open(input_path, 'wb') as f:
63
+ f.write(uploaded_file.getbuffer())
64
 
65
  # Load the model
66
  @st.cache_resource(show_spinner=False)