自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Algorithms : enum the Binary Search Tree sequences

Input a datastructre of the binary search tree. and print all of the generated sequences of the binary search tree.for example. input: 21 32 is the root, 1 is the left subtree, 3 is the r...

2019-08-30 13:10:51 107

原创 Algorithm PageRank with eigenvalues and eigenvector

A python implementation with dampling factor for PageRank algorithm.# PACKAGE# Here are the imports again, just in case you need them.# There is no need to edit or submit this cell.import numpy ...

2019-08-25 11:56:47 537

原创 Algorithm for build order of some projects

Problem from the textbook.You are given a list of projects and a list of dependencies(which is a list of pairs of projects, where the second project is dependent on the first project). All of a proj...

2019-08-24 22:52:39 153

原创 Algorithm for Gram-Schmidt Transform

Gram-Schmidt 算法的主要目的是将矩阵转换为Orthonormal Matrix# GRADED FUNCTIONimport numpy as npimport numpy.linalg as laverySmallNumber = 1e-14 # That's 1×10⁻¹⁴ = 0.00000000000001# Our first function wil...

2019-08-20 09:44:13 725

原创 Algorithm :Gaussian Elimination for Matrix

最近在review linear Algebra, 高斯消元法来求梯形矩阵感觉很有用。就自己写了一个代码,实现如下:by python:# by sesiria 2019# algorithm for Gaussian Elimination for square matrix.import numpy as npclass MatrixIsSingular(Excepti...

2019-08-16 10:29:54 619

转载 转:完备的AI学习路线,资源整理

转自:https://mp.weixin.qq.com/s/fUNDdCzJrWBoKYh1tT4gSw1数学数学是学不完的,也没有几个人能像博士一样扎实地学好数学基础,入门人工智能领域,其实只需要掌握必要的基础知识就好。AI的数学基础最主要是高等数学、线性代数、概率论与数理统计三门课程,这三门课程是本科必修的。这里整理了一个简易的数学入门文章:数学基础:高等...

2019-08-15 13:59:24 926

转载 转:【干货】如何快速高效阅读Paper(硕士生版)

写在前面:1.本文转载自https://www.jiqizhixin.com/articles/2019-02-22-52.这篇文章实在是太精彩啦,醍醐灌顶,超级厉害。那句话怎么说的来着,读一本好书就是在和优秀的人对话。受益。和需要读论文的朋友们共勉! 一文教你如何快速高效阅读Paper(硕士生版)前言论文阅读一直是科研过程中至...

2019-08-07 09:06:30 247

转载 转:字典树(前缀树)

转载自:https://blog.csdn.net/weixin_39778570/article/details/81990417什么是字典树?叫前缀树更容易理解字典树的样子Trie又被称为前缀树、字典树,所以当然是一棵树。上面这棵Trie树包含的字符串集合是{in, inn, int, tea, ten, to}。每个节点的编号是我们为了描述方便加上去的。树中的每一条边上都标识...

2019-08-06 22:12:18 159

转载 转:如何理解神经网络中的BackPropagation算法

作者:Anonymous链接:https://www.zhihu.com/question/27239198/answer/89853077来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。BackPropagation算法是多层神经网络的训练中举足轻重的算法。简单的理解,它的确就是复合函数的链式法则,但其在实际运算中的意义比链式法则要大的多。要回答题主这个...

2019-08-06 15:56:02 141

空空如也

空空如也

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

TA关注的人

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