0

現在、腐ったリンゴと通常のリンゴを区別するためにCNNを構築しています。 CNNにrgbイメージを送ることができれば大きなメリットがあると思う。しかし、以下のネットワークに変更するためには、正確に何が必要ですか?CNNをRGB画像で鍛える方法

x = tf.placeholder('float', [None, 784]) 
#y = tf.placeholder(tf.float32, shape=(), name="init") 
y = tf.placeholder('int32') 

keep_rate = 0.8 
keep_prob = tf.placeholder(tf.float32) 

def conv2d(x, W): 
    return tf.nn.conv2d(x, W, strides=[1,1,1,1], padding='SAME') 

def maxpool2d(x): 
    #      size of window   movement of window 
    return tf.nn.max_pool(x, ksize=[1,2,2,1], strides=[1,2,2,1], padding='SAME') 



def convolutional_neural_network(x): 
    weights = {'W_conv1':tf.Variable(tf.random_normal([5,5,1,32])), 
       'W_conv2':tf.Variable(tf.random_normal([5,5,32,64])), 
       'W_fc':tf.Variable(tf.random_normal([7*7*64,1024])), 
       'out':tf.Variable(tf.random_normal([1024, n_classes]))} 

    biases = {'b_conv1':tf.Variable(tf.random_normal([32])), 
       'b_conv2':tf.Variable(tf.random_normal([64])), 
       'b_fc':tf.Variable(tf.random_normal([1024])), 
       'out':tf.Variable(tf.random_normal([n_classes]))} 

    x = tf.reshape(x, shape=[-1, 28, 28, 1]) 

    print("test") 
    print(x) 
    conv1 = tf.nn.relu(conv2d(x, weights['W_conv1']) + biases['b_conv1']) 
    conv1 = maxpool2d(conv1) 

    conv2 = tf.nn.relu(conv2d(conv1, weights['W_conv2']) + biases['b_conv2']) 
    conv2 = maxpool2d(conv2) 

    fc = tf.reshape(conv2,[-1, 7*7*64]) 
    fc = tf.nn.relu(tf.matmul(fc, weights['W_fc'])+biases['b_fc']) 
    fc = tf.nn.dropout(fc, keep_rate) 

    output = tf.matmul(fc, weights['out'])+biases['out'] 
    return output 

私は一定の値を変更しようとしましたが、私は連続して1つのエラーが発生しました。このネットワークは現在、28チャンネル1のグレースケール画像を28枚使用することを意図しています。

答えて

2

グレースケールとRGB画像との唯一の違いは、休息意志バンドの数、それぞれ1および3

だから、あなたのCNNは、入力として3つのバンドを取る有している、代わりの1処理される。

あなたのコードの実行を行うことなく、あなたは、少なくとも変更する必要があります。

申し訳
weights = {'W_conv1':tf.Variable(tf.random_normal([5,5,3,32])) 
x = tf.reshape(x, shape=[-1, 28, 28, 3]) 
+0

私が誤って下の投票ボタンをクリックします。それは私に投票を元に戻すことを許可していません –

+0

私はまた、私のmaxpool関数のstridesとkのサイズの4番目の値を3に変更する必要があります今は3つのカラーチャネルの値ですか? –

+0

あなたの回答を編集すると、私は投票を取り消すことができます –

関連する問題