摘要: 公司有一个web 项目是用 Vue 写的, 前段时间负责这个tool的人离职了没有人维护,其他人又很忙,我就去看了一下以便以后能加一些新功能在上面 没有接触过Vue, 这些理解了一下关系做一些学习记录,以防忘了. Vue 只是一个JS 框架,类似的有 React, AngularJS. Vue 这个 阅读全文
posted @ 2018-08-02 10:02 mashuai_191 阅读(122) 评论(0) 推荐(0) 编辑
摘要: Deep Neural Network Getting your matrix dimention right 选hyper-pamameter 完全是凭经验 补充阅读: cost 函数的计算公式: 求导公式 阅读全文
posted @ 2018-05-23 14:09 mashuai_191 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 从docker hub 下载了一个 tensorFlow(debian linux) 镜像,但是里面只支持python2.7 kernel, 不支持python3 kernel. 1. Notebook的右上角点new 只看到 python 2.7 kernel, 然后run 下面命令也可以证实 [ 阅读全文
posted @ 2018-05-16 14:10 mashuai_191 阅读(4694) 评论(0) 推荐(2) 编辑
摘要: Sequence to Sequence models basic sequence-to-sequence model: basic image-to-sequence or called image captioning model: but there are some differences 阅读全文
posted @ 2018-05-07 23:07 mashuai_191 阅读(288) 评论(0) 推荐(0) 编辑
摘要: Word embeding 给word 加feature,用来区分word 之间的不同,或者识别word之间的相似性. 用于学习 Embeding matrix E 的数据集非常大,比如 1B - 100B 的word corpos. 所以即使你输入的是没见过的 durian cutivator 也 阅读全文
posted @ 2018-05-01 22:43 mashuai_191 阅读(503) 评论(0) 推荐(0) 编辑
摘要: Geoffrey Hinton , 人称乔帮主,图灵奖获得者 Pieter Abbeel Ian Goodfellow, GAN之父 2019.3 任 Apple Director Andrej Karpathy. 视觉大牛,李飞飞高徒,2017 加入特斯拉 任 AI director Ruslan 阅读全文
posted @ 2018-04-24 14:57 mashuai_191 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 有哪些sequence model Notation: RNN - Recurrent Neural Network 传统NN 在解决sequence input 时有什么问题? RNN就没有上面的问题. 注意这里还提到了BRNN 双向RNN的概念。 激活函数 g1 经常用的是tanh, 也有用re 阅读全文
posted @ 2018-04-23 21:09 mashuai_191 阅读(396) 评论(0) 推荐(0) 编辑
摘要: NN representation 这一课主要是讲3层神经网络 下面是常见的 activation 函数.sigmoid, tanh, ReLU, leaky ReLU. Sigmoid 只用在输出0/1 时候的output layer, 其他情况基本不用,因为tanh 总是比sigmoid 好. 阅读全文
posted @ 2018-04-19 23:14 mashuai_191 阅读(392) 评论(0) 推荐(0) 编辑
摘要: Face recognition One Shot Learning 只看一次图片,就能以后识别, 传统deep learning 很难做到这个. 而且如果要加一个人到数据库里面,就要重新train model 显然不合理,所以就引出了 One Shot Learning 的概念。 怎么得出这个si 阅读全文
posted @ 2018-04-16 23:06 mashuai_191 阅读(318) 评论(0) 推荐(0) 编辑
摘要: Logistic regression Cost function for logistic regression Gradient Descent 接下来主要讲 Vectorization Logistic Regression 的向量实现 Vectorizing LR Gradient outp 阅读全文
posted @ 2018-04-10 23:38 mashuai_191 阅读(215) 评论(0) 推荐(0) 编辑