I want to create the positive and negative image pairs to train a Siamese network. My siamese network looks like following
def ResNet_model():
baseModel = ResNet50(weights="imagenet", include_top=False,input_tensor=Input(shape=(IMAGE_SIZE, IMAGE_SIZE, 3)))
for layer in baseModel.layers[:165]:
layer.trainable = False
headModel = baseModel.output
headModel = GlobalAveragePooling2D()(headModel)
model = Model(inputs=baseModel.input, outputs=headModel)
return model
featureExtractor = ResNet_model()
imgA = Input(shape=(224, 224, 3))
imgB = Input(shape=(224, 224, 3))
view1_branch = featureExtractor(imgA)
view2_branch = featureExtractor(imgB)
all_features = Concatenate()([view1_branch, view2_branch]) # Lambda(euclidean_distance)([view1_branch, view2_branch]) # #Concatenate()([view1_branch, view2_branch])
hybridModel = Dense(500, activation="relu")(all_features)
hybridModel = Dropout(.3)(hybridModel)
hybridModel = Dense(500, activation="relu")(hybridModel)
hybridModel = Dense(500, activation="relu")(hybridModel)
hybridModel = Dense(500, activation="relu")(hybridModel)
hybridModel = Dropout(.25)(hybridModel)
hybridModel = Dense(500, activation="relu")(hybridModel)
hybridModel = Dense(500, activation="relu")(hybridModel)
hybridModel = Dense(10, activation="softmax")(hybridModel)
final_model = Model(inputs=[imgA,imgB], outputs=hybridModel,name="final_output")
My folder structure is like following:
|-- class_folder_a
|-- img_1
|-- img_2
|-- img_3
|-- class_folder_b
|-- img_1
|-- img_2
|-- img_3
So far I found some code here and here where all the images are in the same folder. How do i create image pairs ( positive: where both images belong to same class , negative: images belong to different class ) for folder structure like i mentioned. Any help would be appreciated .
You can try one or both of the following options:
1. Python generator Write your own
python
generator
with theyield
instead ofreturn
paradigm.Read more about generators in Python in this tutorial.
In
tensorflow-2
,model.fit()
accepts a python generator. It used to be that you had to callmodel.fit_generator()
.2. Keras Generator
Folow this tutorial on how to build your own custom data generator by inheiting from
tf.keras.utils.Sequence
.Just follow all the steps. When you get to the def __get_data(self) function: Adapt to your Siamese network by doing something like:
Hope this puts you on your way to a working generator.