Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update lab1.py #100

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions mitdeeplearning/lab1.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ def test_batch_func_next_step(func, args):
return True

def test_custom_dense_layer_output(y):
'''ssya ingin menjelaskan bahwa nilai yang saya buat dari hasil customisasi dari dense layer ini sangatlah mudah
coba, hanya dengan mengggunakan parameter y saja, maka menjelaskan bagaimana sebuah layer ini bekerja.
'''
true_y = np.array([[0.2697859, 0.45750418, 0.66536945]],dtype='float32')
assert tf.shape(y).numpy().tolist() == list(true_y.shape), "[FAIL] output is of incorrect shape. expected {} but got {}".format(true_y.shape, y.numpy().shape)
np.testing.assert_almost_equal(y.numpy(), true_y, decimal=7, err_msg="[FAIL] output is of incorrect value. expected {} but got {}".format(y.numpy(), true_y), verbose=True)
Expand Down