LeetCode Binary Search
LeetCode Recursion 2
LeetCode Recursion 1
LeetCode Binary Tree
Binary Tree Preorder Traversal
1 | class Solution { |
LeetCode Linked List
LeetCode Arrays 101
Deep Learning Course 5
Wow, I completed them before the deadline.
πππ
Deep Learning Specialization Certificate
Week 1
Building a Recurrent Neural Network - Step by Step
1.1 - RNN Cell
1 | a_next = np.tanh(np.matmul(Waa, a_prev) + np.matmul(Wax, xt) + ba) |
Deep Learning Course 4
Week 1 - Convolutional Neural Networks
Step by Step
3.1 - Zero-Padding
1 | X_pad = np.pad(X, ((0, 0), (pad, pad), (pad, pad), (0,0)), mode='constant', constant_values = (0,0)) |
3.2 - Single step of convolution
1 | s = a_slice_prev * W |