自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 python学习笔记之CNN卷积神经网络可视化

#下面这个我得电脑打不起来,程序下面附有修改过的可视化程序# coding: utf-8# In[1]:import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data# In[2]:mnist = input_data.read_data_sets('MNIST_data',on...

2018-04-26 15:19:15 1595

原创 Python学习笔记之--实验室燃烧分析仪vie数据提取---生成excel文件

# -*- coding: utf-8 -*-import osimport xlwtinput("Please click enter to start !")print("Please wait ...")path=os.getcwd()+'\\'Excel=xlwt.Workbook(encoding='utf-8')table=Excel.add_sheet("vie")...

2018-04-24 10:28:17 298 1

原创 python学习笔记之pyinstaller使用方法

pyinstaller 安装pip install pyinstaller0.pyinstaller -F test.py  生成单个exe,并且会弹出dos  (最佳选择)1.pyinstaller -F -w test.py  生成单个exe,但不会弹出dos窗口(脚本中不能还有print等输出输入命令)2.pyinstaller -w test.py     生成的exe会弹出dos窗口  ...

2018-04-24 10:20:31 306

原创 卷积神经网络理论基础

卷积神经网络策略:权值共享,让一组神经元使用相同的权值,大大的提高了权值多的计算训练慢的缺点。例如 卷积神经网络对手写数字识别:网络的输入是一个32x32的手写数字图像,输出是其识别结果,CNN复合多个卷积层,和采样层对信号进行加工,然后在连接层实现与输出目标之间的映射。每个卷积层都包含多个特征映射,每个特征映射是一个有多个神经元组成的平面,通过一种卷积滤波器提取输入的一种特征。如上图,第一个卷积...

2018-04-18 16:21:41 2830

原创 python学习笔记之TensorFlow tensorboard可视化

# coding: utf-8# In[1]:import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datafrom tensorflow.contrib.tensorboard.plugins import projector# In[2]:# 载入数据集mnist = in...

2018-04-18 14:17:22 257

原创 python学习笔记之tensorboard绘制结构曲线分析各参数

# coding: utf-8# In[2]:import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data# In[3]:# 载入数据集mnist = input_data.read_data_sets("MNIST_data", one_hot=True)# 每个批次...

2018-04-16 14:04:47 2903

原创 python学习笔记之tensorboard

# coding: utf-8# In[2]:import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data# In[3]:# 载入数据集mnist = input_data.read_data_sets("MNIST_data", one_hot=True)# 每个批次...

2018-04-15 22:20:44 678

空空如也

空空如也

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

TA关注的人

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