Skip to content

Instantly share code, notes, and snippets.

View nyk510's full-sized avatar
🤒
Out sick

Yamaguchi Takahiro nyk510

🤒
Out sick
View GitHub Profile
# coding: utf-8
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
sns.set(context='notebook', style='white')
sns.set_palette(sns.color_palette(palette='Set1')[:])
@nyk510
nyk510 / file0.txt
Last active October 14, 2015 00:36
PRML 第5章 ニューラルネットの実装 ref: http://qiita.com/nykergoto/items/a6bd77b198814699a843
\begin{align}
y_n&=f(\sum_{j=1}^M w_{kj}^{(2)} \tanh(\sum_{i=1}^D w_{ji}^{(1)}x_i+w_{j0}^{(0)})+w_{k0}^{(2)})\\
&=\sum_{j=1}^M w_{kj}^{(2)} \tanh(\sum_{i=1}^D w_{ji}^{(1)}x_i+w_{j0}^{(0)})+w_{k0}^{(2)}
\end{align}