Use two examples to show how to build the neural network from scratch: define the activation function on each layer, define the lost function, and calculate the partial derivatives using chain rules.
tensorflow简介--07
这是以前看卷积神经网络做的笔记.我很喜欢另外一种学习方法:不是从理解什么是CNN开始,也不是去关注后面的数学公式,也不是怎么来用随机梯度下降的办法来最小化cross-entropy函数求解参数。而是直接用tensorflow来build一个简单的卷积神经网络,观察它是怎么工作的,最后的结果是什麽。理解了这些以后,然后在回过头来理解那些理论的部分和数学的部分。这篇blog的绝大部分内容都是来自于stanford的卷积神经网络课程的讲义。用中文整理出来,因为还是看中文快一些。
LSTM Introduction
Download Bitcoin Price
Recently I read an article from zhihu. It talks about bitcoin arbitrage traiding with risk hedging. It reminds me the 'one upon a time' in full swing.
买入股票时,买入价至少设为多少才能保证有九成的把握在当天成交?
这是我觉得很好的一篇知乎文章,原作者不仅简明扼要的把一个问题转化为数学问题,把书本上关于Ito积分应用到现实问题中,而且给出了一个Simulation解,做到了让人真正明白是怎么回事。
SQLAlchemy
SQLAlchemy introduction
Tensorflow简介--06: Logistic regression and KNN analysis for MNIST data
MNIST is used as example in tensorflow. Here are the examples of how to use logistic regression and KNN(K nearest neighbors) to analyze this data.
summary about http.request, GET and POST, form, and route in flask
summary about http.request, GET and POST, form, and route in flask
Online IFRS9/CECL lifetime credit loss calculation engine
It is to provide an online IFRS9/CECL lifetime credit loss calculation engine.
Gradient Descent in solving linear regression and logistic regression
use linear regression and logistic regression as examples to show how gradient descent is used to minimize the loss function or to maximize the target function.