conv_base = EfficientNetB6(weights="imagenet", include_top=False, input_shape=400,400)
SyntaxError: positional argument follows keyword argument
#Options: EfficientNetB0, EfficientNetB1, EfficientNetB2, EfficientNetB3, ... up to 7 #Higher the number, the more complex the model is. and the larger resolutions it can handle, but the more GPU memory it will need# loading pretrained conv base model #input_shape is (height, width, number of channels) for images
conv_base = EfficientNetB6(weights="imagenet", include_top=False, input_shape=input_shape)
#this is the original code that i found, but i don't know what to put