python 建立CNN用的占位符,任意图片数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 建立CNN用的占位符,任意图片数相关的知识,希望对你有一定的参考价值。

def create_placeholders(n_H0, n_W0, n_C0, n_y):
    """
    Creates the placeholders for the tensorflow session.
    
    Arguments:
    n_H0 -- scalar, height of an input image
    n_W0 -- scalar, width of an input image
    n_C0 -- scalar, number of channels of the input
    n_y -- scalar, number of classes
        
    Returns:
    X -- placeholder for the data input, of shape [None, n_H0, n_W0, n_C0] and dtype "float"
    Y -- placeholder for the input labels, of shape [None, n_y] and dtype "float"
    """
    X = tf.placeholder(tf.float32, shape=(None, n_H0, n_W0, n_C0), name='X')
    Y = tf.placeholder(tf.float32, shape=(None, n_y), name='Y')
    return X, Y
    
X, Y = create_placeholders(64, 64, 3, 6) # height, width, channel, classes
print ("X = " + str(X))
print ("Y = " + str(Y))

以上是关于python 建立CNN用的占位符,任意图片数的主要内容,如果未能解决你的问题,请参考以下文章

使用 CNN 和 LSTM 在 Tensorflow 中占位符大小和类型的错误

C++下基本数据类型总结 (占位符 输入符 输出符)

C++下基本数据类型总结 (占位符 输入符 输出符)

记录一下python中的十大%占位符对应的格式化...

UITableViewCell 占位符图片

使用空占位符将图像插入幻灯片(PowerPoint)