自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 tensorflow之tensorboard的使用

Tensorboard:可视化学习 为了方便Tensorflow程序的理解、调试与优化,Tensorflow自带了一个可视化工具-Tensorboard,可以用来展现Tensorflow图像,绘制图像生成的定量指标以及附加数据。 Tensorboard的数据形式标量:Scalars图片:Images音频:Audio计算图:Graph数据分布:Distribution直方图:Histo

2017-10-17 15:38:51 520

原创 python+read()+、readline()和+readlines()的区别和用法

with open('ceshi.txt','r',encoding='utf-8') as f: data = f.read()print(data)print(type(data))Hello worldpythonWelcomeHow are you<class 'str'>with open('ceshi.txt','r',encoding='utf-8') as f:

2017-10-17 10:15:45 1469

原创 tf.shape()与tf.get_shape()

import tensorflow as tfimport numpy as npx=tf.constant([[1,2,3],[4,5,6]])y =[[1,2,3],[4,5,6]]z= np.arange(24).reshape([2,3,4])sess = tf.Session()x_shape= tf.shape(x)y_shape=tf.shape(y)z_shape=t

2017-10-16 21:32:11 12406

空空如也

空空如也

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

TA关注的人

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