-
Tensor Manipulation: Numerically Stable Softmax
### Description Implement the softmax function, which converts a vector of numbers into a probability distribution. A naive implementation can be numerically unstable if the input values are very...
-
Tensor Manipulation: Dropout Layer
### Description Implement the dropout layer from scratch. During training, dropout randomly zeroes some of the elements of the input tensor with probability `p`. The remaining elements are scaled...
1