Skip to content
Merged
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
1 change: 1 addition & 0 deletions neural-networks-case-study.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ $$
Given the array of `scores` we've computed above, we can compute the loss. First, the way to obtain the probabilities is straight forward:

```python
num_examples = X.shape[0]
# get unnormalized probabilities
exp_scores = np.exp(scores)
# normalize them for each example
Expand Down