eskayML commited on
Commit
c22e994
·
1 Parent(s): 54d43ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1,11 +1,11 @@
1
- import tensorflow as tf
2
- from tf.keras.models import load_model
3
 
4
  # importing the preprocessing steps for the model architecture which i used for transfer learning
5
- from tf.keras.applications.xception import preprocess_input
6
 
7
  import numpy as np
8
- from tf.keras.preprocessing.image import load_img, img_to_array
9
  import streamlit as st
10
  import cv2
11
 
 
1
+ import tensorflow
2
+ from tensorflow.keras.models import load_model
3
 
4
  # importing the preprocessing steps for the model architecture which i used for transfer learning
5
+ from tensorflow.keras.applications.xception import preprocess_input
6
 
7
  import numpy as np
8
+ from tensorflow.keras.preprocessing.image import load_img, img_to_array
9
  import streamlit as st
10
  import cv2
11