In [1]:
%reload_ext autoreload
%autoreload 2
%matplotlib notebook

import sys
sys.path.append('..')

from helper import nn

In [2]:
X, _ = nn.load_data('ex4data1.mat')

In [3]:
nn.plot_100_image(X)



In [ ]: