小编Jup*_*Boi的帖子

When building a CNN on tensorflow how do I specify which convolutional filter to use?

I know that there are different kinds of Convolutional Filters depending on the job you want to do. ie. Sharpening, blurring, etc. Is there a specific kind we need to use for image classification?

An example CNN used for image classification is provided on the tensorflow website:

model = models.Sequential()
model.add(layers.Conv2D(32, (3, 3), activation='relu', input_shape=(32, 32, 3)))
model.add(layers.MaxPooling2D((2, 2)))
model.add(layers.Conv2D(64, (3, 3), activation='relu'))
model.add(layers.MaxPooling2D((2, 2)))
model.add(layers.Conv2D(64, (3, 3), activation='relu'))
model.add(layers.Flatten())
model.add(layers.Dense(64, activation='relu'))
model.add(layers.Dense(10))
Run Code Online (Sandbox Code Playgroud)

I realize the convolutional layer is using …

python deep-learning keras tensorflow cnn

1
推荐指数
1
解决办法
91
查看次数

标签 统计

cnn ×1

deep-learning ×1

keras ×1

python ×1

tensorflow ×1