自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 卷积神经网络

卷积神经网络卷积——池化——Image——Convolution——Max Pooling——Convolution——Max Pooling——Fully Connected——Fully Connected——Classifier

2021-03-05 16:47:47 223

原创 CNN识别手写数字-莫烦python

搭建一个 CNN识别手写数字前面跟着莫烦python/tensorflow教程完成了神经网络识别手写数字的代码。import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datamnist = input_data.read_data_sets('MNIST_data', one_hot = True)def compute_accuracy(v_xs, v_ys): # 计算精度函数

2021-03-05 16:31:29 779 1

原创 Tensorboard

Tensorboardimport tensorflow as tfimport numpy as npdef addlayer(inputs, insize, outsize, activation_function=None): #add one more layer and return the output of this layer with tf.name_scope('layer'): with tf.name_scope('weights'):

2021-02-25 21:11:10 164

原创 用Tensorflow框架搭建神经网络

用Tensorflow框架搭建神经网络import tensorflow as tfimport numpy as npimport matplotlib.pyplot as pltdef addlayer(inputs, insize, outsize, activation_function=None): Weights = tf.Variable(tf.random_normal([insize, outsize])) # 定义权值矩阵,一般初始值为随机数比赋全0要好 bi

2021-02-25 15:52:02 241 1

原创 TensorFlow 莫烦python

这里写自定义目录标题举个栗子#create datax_data = np.random.rand(100).astype(np.float32)y_data = x_data *0.1 +0.3#create tensorflow structure start#Weight = tf.Variable(tf.random_uniform([1], -1.0,1.0))biases = tf.Variable(tf.zeros([1]))y = Weight * x_data +

2021-02-25 15:51:45 130

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除