need help my codes produce errors, posts do not help me
ValueError Traceback (most recent call last)
Cell In[34], line 1
----> 1 conv_model = convolutional_model((64, 64, 3))
2 conv_model.compile(optimizer=‘adam’,
3 loss=‘categorical_crossentropy’,
4 metrics=[‘accuracy’])
5 conv_model.summary()
Cell In[33], line 45, in convolutional_model(input_shape)
43 outputs=tfl.Dense(6,activation=‘softmax’)
44 # YOUR CODE ENDS HERE
—> 45 model = tf.keras.Model(inputs=input_img, outputs=outputs)
46 return model