自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

kengluer9495的博客

以前博客

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

原创 学习opencv(二刷)前第三章知识点

1.访问矩阵元素的三种方法#include "stdafx.h"#include <opencv2/opencv.hpp>#include "highgui/highgui.hpp" #include<iostream>using namespace std;using namespace cv;int main(){ cv::Mat mSrcImg =...

2018-01-29 22:44:29 187

原创 Tensorflow实战(六)Googe inception Net和ResNet

实验(一)Google inception Net 第一个inception1.基本模型块2.第一个inception 第二个inception1.基本模型块                                     2.第二个inceptioninception v4

2018-01-24 22:27:45 298

原创 Tensorflow实战(五)经典卷积神经网络之实现VGGNet

算法原理:      VGGNet探索了卷积神经网络深度与其性能之间的关系,通过反复的堆叠3*3的小型卷积核和2*2的最大池化层,VGGNet成功的构建了16-19层深的卷积神经网络。。       VGGNet拥有5段卷积,每一段内有2-3个卷积层,同时尾部会连接一个最大池化实验代码:# -*- coding: utf-8 -*-"""Created on Tue Jan

2018-01-23 22:31:46 778

原创 Tensorflow实战( 四)经典卷积神经网络之实现AlexNet

创新性:成功的使用了Relu、DropOut、LPN和使用cuda对深度卷积卷积网路的训练。重点:实验代码:# -*- coding: utf-8 -*-"""Created on Fri Jan 19 21:04:52 2018@author: hui"""from datetime import datetimeimport mathimport ti

2018-01-23 18:50:10 570

原创 tensorflow实战(三)实现卷积神经网络

每个卷积层通常进行的步骤:1.图像通过多个不同的卷积核的滤波,并加bias,提取局部特征,每一个卷积核会映射出一个新的2D图像2.将前面的卷积核及卷积滤波输出结果,进行非线性的激活函数处理。3.对激活函数进行池化操作(降采样),一般是最大池化实验一 Tensorflow 实现简单的卷积神经网络import tensorflow as tffrom tensorflow.exa

2018-01-16 22:44:43 629

原创 TensorFlow实战(二)Tensorflow实现自编码器及多层感知机

tensorflow实现自编码器# -*- coding: utf-8 -*-"""Created on Sat Jan 13 20:01:39 2018@author:huizhang"""import numpy as npimport sklearn.preprocessing as prepimport tensorflow as tffrom tensorflo

2018-01-13 21:04:06 508

原创 tensorflow实战(一)TensorFlow实现 softmax Regression 识别手写数字

一、算法思想:二、操作步骤:1.在ipython 或者spyder中直接输入以下代码# -*- coding: utf-8 -*-"""Created on Fri Jan 12 16:29:41 2018@author: Administrator"""#下载数据集from  tensorflow.examples.tutorials.mnist import input_dat

2018-01-12 16:50:52 502

空空如也

空空如也

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

TA关注的人

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