davron04 commited on
Commit
af94208
Β·
1 Parent(s): 4c3635a

updated app.py

Browse files
Files changed (3) hide show
  1. app.py +1 -1
  2. notebooks/Pytorch.ipynb +1 -1
  3. notebooks/Tensorflow.ipynb +1 -1
app.py CHANGED
@@ -104,6 +104,6 @@ if uploaded_file:
104
  # ---- Footer ----
105
  st.markdown("---")
106
  st.markdown(
107
- "πŸš€ **Built with Streamlit, TensorFlow & PyTorch** | Made by **Davron Abdukhakimov**\n\n"
108
  "πŸ“Œ Check out the repo on [Hugging Face πŸ€—](https://huggingface.co/spaces/davron04/CNN_Pneumonia_detection/tree/main)"
109
  )
 
104
  # ---- Footer ----
105
  st.markdown("---")
106
  st.markdown(
107
+ "πŸš€ **Built with Streamlit, TensorFlow & PyTorch** | Made by **[Davron Abdukhakimov](www.linkedin.com/in/davron-abdukhakimov)**\n\n"
108
  "πŸ“Œ Check out the repo on [Hugging Face πŸ€—](https://huggingface.co/spaces/davron04/CNN_Pneumonia_detection/tree/main)"
109
  )
notebooks/Pytorch.ipynb CHANGED
@@ -1910,7 +1910,7 @@
1910
  "metadata": {},
1911
  "outputs": [],
1912
  "source": [
1913
- "model_file_path = './models/pytorch_model.pth'\n",
1914
  "\n",
1915
  "torch.save(final_model.state_dict(), model_file_path)"
1916
  ]
 
1910
  "metadata": {},
1911
  "outputs": [],
1912
  "source": [
1913
+ "model_file_path = '../models/pytorch_model.pth'\n",
1914
  "\n",
1915
  "torch.save(final_model.state_dict(), model_file_path)"
1916
  ]
notebooks/Tensorflow.ipynb CHANGED
@@ -2607,7 +2607,7 @@
2607
  "metadata": {},
2608
  "outputs": [],
2609
  "source": [
2610
- "model_file_path = './models/tensorflow_model.keras'\n",
2611
  "\n",
2612
  "final_model.save(model_file_path)"
2613
  ]
 
2607
  "metadata": {},
2608
  "outputs": [],
2609
  "source": [
2610
+ "model_file_path = '../models/tensorflow_model.keras'\n",
2611
  "\n",
2612
  "final_model.save(model_file_path)"
2613
  ]