- 博客(90)
- 资源 (2)
- 收藏
- 关注
原创 [学习] 深度学习-Lesson 6 Deep Learning abstract - practise 1
实现梯度下降算法在该 Lab 中,我们将实现梯度下降算法的基本函数,以便在小数据集中查找数据边界。 首先,我们将从一些函数开始,帮助我们绘制和可视化数据。import matplotlib.pyplot as pltimport numpy as npimport pandas as pd# Some helper functions for plotting and drawing ...
2019-11-07 08:51:38 254
原创 [学习] 深度学习-Lesson 6 Deep Learning abstract 3
6.1 梯度下降 Gradient Descent6.1.1 梯度计算S型函数的导数:我们开始计算误差函数的导数吧。首先要注意的是 s 型函数具有很完美的导数。即 σ′(x)=σ(x)(1−σ(x))原因是,我们可以使用商式计算它:现在,如果有m个样本点,标为...
2019-11-07 08:48:30 256
原创 [学习] 深度学习-Lesson 6 梯度下降算法练习
实现梯度下降算法在该 Lab 中,我们将实现梯度下降算法的基本函数,以便在小数据集中查找数据边界。 首先,我们将从一些函数开始,帮助我们绘制和可视化数据。import matplotlib.pyplot as pltimport numpy as npimport pandas as pd# Some helper functions for plotting and drawing ...
2019-11-07 00:02:15 493
原创 [学习] 深度学习-Lesson 5 Deep Learning abstract 2
5.1 非线性边界5.2 误差函数刚刚的感知器算法实现告诉我们,获取正确分类的方式,就是通过每一个错误分类的点,评估错误点位置与我们期望位置之间的差异,来慢慢的修正我们分类函数。因为误差暗示了如何进行正确的分类,因此误差的定义就变得尤为重要,这也被称为误差函数。5.3 误差函数与梯度下降5.4 离散型与连续性-为什么使用sigmoidDiscrete: 0或1...
2019-11-06 08:42:54 199
原创 [学习] 深度学习-Lesson 4 Deep Learning abstract 1
4.1 BriefTwo Q:What is Deep Learning?What is it used for?What is at the heart of deep learning? Neural Networks4.2 分类问题理解最基本的分类,accepted 和 rejected. 引出一个问题,如何定位accepted 和 rejected ...
2019-11-06 08:38:07 190
原创 [Read]XXJ00178《算法导论》第25章 所有结点对的最短路径问题-2
一个不在局限权值为正数的内部结点对算法。慢是正常的,可扩展性大大提高。
2019-11-06 08:32:47 193
原创 [paper] 00041-A Flexible New Technique for Camera Calibration
Today Let's read a classics and old paper which is the foundation for calibration.Author: Zhengyou Zhang0. AbstractCalibrate a camera. The technique only requires the camera to observe a pla...
2019-11-02 20:43:23 493
原创 [学习] 深度学习-Lesson 3 jupyter notebooks
1. Jupyter notebook 是什么?Jupyter notebook 是一种 Web 应用,能让用户将说明文本、数学方程、代码和可视化内容全部组合到一个易于共享的文档中。1.1 文学化编程在文字表达化编程中,直接在代码旁写出叙述性文档,而不是另外编写单独的文档。1.2 notebook如何工作此架构的一个优点是,内核无需运行 Python。由于 ...
2019-11-02 20:34:44 313
原创 [学习] 深度学习-Lesson 2--Anaconda
1. Anaconda 是什么?1.1 AnacondaAnaconda 实际上是一个软件发行版,它附带了conda、Python 和 150 多个科学包及其依赖项。1.2 管理包1.3 环境conda 还是虚拟环境管理器。它类似于另外两个很流行的环境管理器,即virtualenv和pyenv。2 安装Anacondahttps://ww...
2019-11-02 20:31:18 147
原创 [学习] 深度学习-Lesson 1--矩阵学习和Numpy复习
1. 数据维度Scalars have zero dimensions.Vectors's dimension is oneMatrices is a two-dimensional grid of values.Tensor can refer to any n-dimensional collection.[1 2 3] is 1*3 Matrix[1 2 3]T is...
2019-11-01 08:05:59 153
原创 [paper] 00039- AI Benchmark: Running Deep Neural Networks on Android Smartphones
AI Benchmark: Running Deep Neural Networks on Android SmartphonesAuthor:0. AbstractIn this paper, we present a study of the current state of deep learning in the Android ecosystem and descr...
2019-10-29 08:35:46 323
原创 [paper] 00040-Predicting Depth, Surface Normals and Semantic Labels with a Common Multi-Scale
Predicting Depth, Surface Normals and Semantic Labels with a Common Multi-Scale Convolutional ArchitecturePaper:Author:David Eigen: Dept. of Computer Science, Courant Institute, New York Unive...
2019-10-29 08:31:25 389
原创 [Read]XXJ00172《算法导论》第20章 van Emde Boas 树
对数据提前处理,按照某些约束准备,就可以用更加有效率的树形数据结构
2019-10-29 08:22:47 263
原创 [paper] 00034-Convoulution Pose Machines
Author: Shih-En Wei---The Robotics Institute Carnegie Mellon UniversityAbstract:Pose Machines provide a sequential prediction framework for learning rich implicit spatial models.The contribu...
2019-10-25 08:04:25 194
原创 [paper] 00037-Encoder-Decoder with Atrous Separable Convolution for Semantic Image Segmentation
Author: Liang-CHieh Chen et. al--- Google Inc.Keywords:DeepLabv3+ : extends DeepLabv3 by adding a simple yet effective decoder module to refine the segmentation results especially along obj...
2019-10-24 08:27:18 241
原创 [paper] 00036-Xception:Deep Learning with Depthwise Separable Convolutions
Author: Francois Chollet ----Google---Keras作者、谷歌大脑Key Words:Depthwise Separable Convolutions-------1. Introduction1.1 The Inception HypothesisA single convolution kernel is task...
2019-10-24 08:23:06 217
原创 [Read]XXJ00168《算法导论》第16章 贪心算法
动态规划与贪心算法的比较,引出什么是贪心算法,怎么理解贪心算法?用霍夫曼编码来说明贪心算法使用。最后,扩展了贪心算法
2019-10-23 08:12:29 129
原创 [paper] 00033 Distance Metric Learning:A Comprehensive Survey
看的很费劲,也只看了个囫囵吞枣。不过,Get到不少的知识点,总体来说值。
2019-10-22 00:42:32 517
原创 [paper] 00035 Synthetic Depth-of-Field with a Single-Camera Mobile Phone
Google ResearchPaper name aimed two point: 1. Synthetic Depth-of-Field 2. Single-Camera Mobile PhoneKey Words:Shallow depth-of-field: W...
2019-10-22 00:34:36 916 1
原创 [Read]XXJ00164《算法导论》第12章 二叉搜素树
二叉搜索树是数据结构,基本和二叉树的算法一致。根本上来说,这两个的不同在于二叉搜素树是数据结构。
2019-10-17 07:20:43 121
原创 [paper] 00020 Faster R-CNN_ Towards Real-Time ObjectDetection with Region Proposal Net
abstract:干啥的:物体检测。研究这篇论文的好处:1. 开源的代码2. 2给版本:python和matlab3. 用的公开数据,具有可信度数据+算法+代码 = 方便作者Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun源码:PYTHON:https://github.com/...
2019-10-14 00:42:24 100
原创 [Read]XXJ00161《算法导论》第8章 线性时间排序 第9章 中位数和顺序统计量
今天对排序的章节都看完,深感排序算法是计算机算法的根本。
2019-10-14 00:37:20 111 1
IEKF-based Visual-Inertial Odometryusing Direct Photometric Feedback ROVIO
2019-09-01
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人