Tensorflow卷积神经网络Cifar100实战

在这里插入图片描述

import tensorflow as tf
from tensorflow import keras
from tensorflow.keras import datasets, layers, optimizers, Sequential

def preprocess(x, y):
    x = tf.cast(x, dtype = tf.float32) / 255.

    y = tf.cast(y, dtype = tf.int32)
    return x, y
batchsize = 128
(x_train, y_train), (x_test, y_test) = datasets.cifar100.load_data()
y_train = tf.squeeze(y_train, axis=1)
y_test = tf.squeeze(y_test, axis=1)
traindb = tf.data.Dataset.from_tensor_slices((x_train, y_train))
traindb = traindb.shuffle(6000).map(preprocess).batch(batchsize)
test_db = tf.data.Dataset.from_tensor_slices((x_test, y_test))
test_db = test_db.map(preprocess).batch(batchsize)
conv_layers = [
    #unit1
    layers.Conv2D(64, kernel_size = [3, 3], padding = 'same', activation = tf.nn.relu),
    layers.Conv2D(64, kernel_size = [3, 3], padding = 'same', activation = tf.nn.relu),
    layers.MaxPool2D(pool_size = [2, 2], strides = 2, padding = 'same'),
    # unit2
    layers.Conv2D(128, kernel_size=[3, 3], padding='same', activation=tf.nn.relu),
    layers.Conv2D(128, kernel_size=[3, 3], padding='same', activation=tf.nn.relu),
    layers.MaxPool2D(pool_size=[2, 2], strides=2, padding='same'),
    # unit3
    layers.Conv2D(256, kernel_size=[3, 3], padding='same', activation=tf.nn.relu),
    layers.Conv2D(256, kernel_size=[3, 3], padding='same', activation=tf.nn.relu),
    layers.MaxPool2D(pool_size=[2, 2], strides=2, padding='same'),
    # unit4
    layers.Conv2D(512, kernel_size=[3, 3], padding='same', activation=tf.nn.relu),
    layers.Conv2D(512, kernel_size=[3, 3], padding='same', activation=tf.nn.relu),
    layers.MaxPool2D(pool_size=[2, 2], strides=2, padding='same'),
    # unit5
    layers.Conv2D(512, kernel_size=[3, 3], padding='same', activation=tf.nn.relu),
    layers.Conv2D(512, kernel_size=[3, 3], padding='same', activation=tf.nn.relu),
    layers.MaxPool2D(pool_size=[2, 2], strides=2, padding='same'),
]
def main():
    conv_net = Sequential(conv_layers)
    fc_net = Sequential([
        layers.Dense(256, activation = tf.nn.relu),
        layers.Dense(128, activation = tf.nn.relu),
        layers.Dense(100),
    ])
    conv_net.build(input_shape = [None, 32, 32, 3])
    fc_net.build(input_shape = [None, 512])
    optimizer = optimizers.Adam(lr = 3e-4)
    variables = conv_net.trainable_variables + fc_net.trainable_variables
    for epoch in range(50):
        for step, (x, y) in enumerate(traindb):
            with tf.GradientTape() as tape:
                out = conv_net(x)
                out = tf.reshape(out, [-1, 512])
                logits = fc_net(out)
                y_onehot = tf.one_hot(y, depth = 100)
                loss = tf.losses.categorical_crossentropy(y_onehot, logits, from_logits = True)
                loss = tf.reduce_mean(loss)
            grads = tape.gradient(loss, variables)
            optimizer.apply_gradients(zip(grads, variables))
            if step % 100 == 0:
                print(epoch, 'loss:', float(loss))
        total_num = 0
        total_correct = 0
        for (x, y) in test_db:
            out = conv_net(x)
            out = tf.reshape(out, [-1, 512])
            logits = fc_net(out)
            prob = tf.nn.softmax(logits, axis =1)
            pred = tf.cast(tf.argmax(prob, axis = 1), dtype = tf.int32)
            total_correct += tf.cast(tf.equal(pred, y), dtype = tf.int32)
            total_correct = int(tf.reduce_sum(total_correct))
            total_num += x.shpe[0]
        acc = total_correct / total_num
        print('acc:', acc)

if __name__ == '__main__':
    main()
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值