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

Update app.py

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