自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

hanhuoqwer

学习记录

  • 博客(13)
  • 收藏
  • 关注

原创 炼数成金Tensorflow学习笔记之6.2_卷积神经网络

炼数成金Tensorflow学习笔记之6.2_卷积神经网络代码及分析代码及分析import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datatf.reset_default_graph()mnist = input_data.read_data_sets('.\MNIST_data'...

2020-03-31 18:25:50 243

原创 炼数成金Tensorflow学习笔记之5.3_tensorboard网络运行

炼数成金Tensorflow学习笔记之5.3_tensorboard网络运行代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Fri Mar 27 18:20:16 2020@author: 寒火qwer"""import tensorflow as tffrom tensorflow.examples.tutorials.mnist...

2020-03-31 10:01:29 123

原创 炼数成金Tensorflow学习笔记之5.2_tensorboard网络结构

炼数成金Tensorflow学习笔记之5.2_tensorboard网络结构代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Thu Mar 26 09:17:06 2020@author: 寒火qwer"""import tensorflow as tffrom tensorflow.examples.tutorials.mnist...

2020-03-31 09:16:16 136

原创 炼数成金Tensorflow学习笔记之5.1_改变学习率

炼数成金Tensorflow学习笔记之5.1_改变学习率代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Wed Mar 25 09:07:14 2020@author: 寒火qwer"""import tensorflow as tffrom tensorflow.examples.tutorials.mnist import in...

2020-03-30 10:04:00 112

原创 炼数成金Tensorflow学习笔记之4.4_优化器

炼数成金Tensorflow学习笔记之4.4_优化器代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Sat Mar 21 13:53:17 2020@author: 寒火qwer"""import tensorflow as tffrom tensorflow.examples.tutorials.mnist import inpu...

2020-03-30 09:56:51 138

原创 炼数成金Tensorflow学习笔记之4.2_dropout

炼数成金Tensorflow学习笔记之4.2_dropout代码及分析代码及分析import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data# 载入数据集mnist = input_data.read_data_sets('.\MNIST_data', one_hot=True)#...

2020-03-30 09:47:09 160

原创 炼数成金Tensorflow学习笔记之4.1_交叉熵

炼数成金Tensorflow学习笔记之4.1_交叉熵代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Fri Mar 20 09:57:30 2020@author: 寒火qwer"""import tensorflow as tffrom tensorflow.examples.tutorials.mnist import inpu...

2020-03-25 08:32:17 106

原创 炼数成金Tensorflow学习笔记之3.2_MNIST分类简单版本

炼数成金Tensorflow学习笔记之3.2_MNIST分类简单版本代码及分析代码及分析import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data# 载入数据集mnist = input_data.read_data_sets('.\MNIST_data', one_hot=True...

2020-03-23 10:20:57 126

原创 炼数成金Tensorflow学习笔记之3.1_非线性回归

炼数成金Tensorflow学习笔记之3.1_非线性回归代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Sun Mar 15 09:10:07 2020@author: 寒火qwer"""import tensorflow as tfimport numpy as npimport matplotlib.pyplot as plt...

2020-03-23 09:59:38 110

原创 炼数成金Tensorflow学习笔记之2.4_Tensorflow简单示例

炼数成金Tensorflow学习笔记之2.4_Tensorflow简单示例代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Sat Mar 14 10:19:12 2020@author: 寒火qwer"""import tensorflow as tfimport numpy as np# 使用numpy生成100个随机点# ...

2020-03-23 08:55:49 741

原创 炼数成金Tensorflow学习笔记之2.3_fetch_and_feed

炼数成金Tensorflow学习笔记之2.3_fetch_and_feed代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Sat Mar 14 10:06:12 2020@author: 寒火qwer"""import tensorflow as tf# Fetchinput1 = tf.constant(3.0)input2...

2020-03-22 09:32:57 351

原创 炼数成金Tensorflow学习笔记之2.2_变量

炼数成金Tensorflow学习笔记之2.2_变量代码及分析代码及分析import tensorflow as tfx = tf.Variable([1, 2])a = tf.constant([3, 3])sub = tf.subtract(x, a)add = tf.add(x, sub)init_op = tf.global_variables_initializer()...

2020-03-22 09:19:23 143

原创 炼数成金Tensorflow学习笔记之2.1

炼数成金Tensorflow学习笔记之2.1代码及分析代码及分析# -*- coding: utf-8 -*-"""Created on Sat Mar 14 09:24:02 2020@author: 寒火qwer"""import tensorflow as tf# 创建一个常量opm1 = tf.constant([[3, 3]])# 创建一个常量opm2 = t...

2020-03-22 08:21:47 138

空空如也

空空如也

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

TA关注的人

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