摘要: Status: week 2 done. Week 1, 主要讲了大数据的的来源 - 机器产生的数据,人产生的数据(比如社交软件上的update, 一般是unstructed data), 组织产生的数据(一般是structured data) 怎么把unstructured data 转化成 st 阅读全文
posted @ 2018-08-13 16:27 mashuai_191 阅读(244) 评论(0) 推荐(0)
摘要: 1. 分词 word segmentation 国内有jieba 分词 2. Named Entity Recognition 训练自己的Model How can I train my own NER model https://nlp.stanford.edu/software/crf-faq. 阅读全文
posted @ 2018-08-13 09:09 mashuai_191 阅读(279) 评论(0) 推荐(0)
摘要: 1. 运行flask写的py程序 $ export FLASK_APP=hello.py; flask run -h 'your host ip' 2. 怎么打印log from flask import Flask import logging app = Flask(__name__) @app 阅读全文
posted @ 2018-08-06 15:34 mashuai_191 阅读(783) 评论(0) 推荐(1)
摘要: 公司有一个web 项目是用 Vue 写的, 前段时间负责这个tool的人离职了没有人维护,其他人又很忙,我就去看了一下以便以后能加一些新功能在上面 没有接触过Vue, 这些理解了一下关系做一些学习记录,以防忘了. Vue 只是一个JS 框架,类似的有 React, AngularJS. Vue 这个 阅读全文
posted @ 2018-08-02 10:02 mashuai_191 阅读(125) 评论(0) 推荐(0)
摘要: Deep Neural Network Getting your matrix dimention right 选hyper-pamameter 完全是凭经验 补充阅读: cost 函数的计算公式: 求导公式 阅读全文
posted @ 2018-05-23 14:09 mashuai_191 阅读(231) 评论(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 阅读(4742) 评论(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 阅读(295) 评论(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 阅读(519) 评论(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 阅读(180) 评论(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 阅读(408) 评论(0) 推荐(0)