自定义博客皮肤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)
  • 收藏
  • 关注

原创 Mask R-CNN阅读笔记

MaskR-CNN一、Introduction        视觉方面的目标检测和语义分割在Fast R-CNN和FCN的基础上快速发展。Fast R-CNN和FCN训练及推理都很快。Mask R-CNN则是为了提供一个能进行实例分割的框架。         实例分割难点:正确检测一幅图片里的所有目标的同时精确分割每一个实例。         因此将传统计算机视觉的目标检测【将对象分类并且用边界框...

2018-03-15 20:14:34 288

原创 TensorFlow笔记(1)

import tensorflow as tfimport numpy as npx_data=np.float32(np.random.rand(2,100))#np.dot同线性代数矩阵乘法 np.multiply或*是对应元素相乘y_data=np.dot([0.100,0.200],x_data)+0.300#tf.Variable(initial_value,name=No...

2018-03-07 16:36:28 171

原创 keras 二:mnist_cnn.py

mnist_cnn.py 在mnist数据集训练一个简单的神经网络'''Trains a simple convnet on the MNIST dataset.Gets to 99.25% test accuracy after 12 epochs(there is still a lot of margin for parameter tuning).16 seconds per ep...

2018-02-12 13:51:36 270

原创 keras 一:mnist_mlp.py

mnist_mlp.py 在mnist数据集上训练一个多层感知机'''Trains a simple deep NN on the MNIST dataset.Gets to 98.40% test accuracy after 20 epochs(there is *a lot* of margin for parameter tuning).2 seconds per epoch on...

2018-02-12 11:40:39 824

原创 FCN(Fully convolutional networks)阅读

1. 摘要&介绍  训练一个end-to-end, pixels-to-pixels的全卷积网络,使得任意大小的输入会产生对应大小的输出。  Improving:whole-image classification, bounding box object detection, part and key-point prediction, local correspondence(局部匹配

2017-12-11 14:04:06 618

空空如也

空空如也

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

TA关注的人

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