Spaces:
Running
Running
Commit
·
5d04c34
1
Parent(s):
96aab6f
Update utils.py
Browse files
utils.py
CHANGED
@@ -34,12 +34,12 @@ base_model = tf.keras.applications.ResNet50V2(include_top=False, input_shape=inp
|
|
34 |
#Making the layers of the model trainable
|
35 |
base_model.trainable = True
|
36 |
|
37 |
-
def preprocess(
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
return
|
43 |
|
44 |
def model_arc():
|
45 |
model = tf.keras.Sequential([
|
|
|
34 |
#Making the layers of the model trainable
|
35 |
base_model.trainable = True
|
36 |
|
37 |
+
def preprocess(img_path):
|
38 |
+
img = Image.open(img_path).resize((256, 256), Image.LANCZOS)
|
39 |
+
img_array = np.array(img)
|
40 |
+
img_array = img_array / 255.0 # Normalize if necessary
|
41 |
+
img_array = np.expand_dims(img_array, axis=0) # Add batch dimension
|
42 |
+
return img_array
|
43 |
|
44 |
def model_arc():
|
45 |
model = tf.keras.Sequential([
|