We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3caafa commit ce193ecCopy full SHA for ce193ec
neural-networks-case-study.md
@@ -96,6 +96,7 @@ $$
96
Given the array of `scores` we've computed above, we can compute the loss. First, the way to obtain the probabilities is straight forward:
97
98
```python
99
+num_examples = X.shape[0]
100
# get unnormalized probabilities
101
exp_scores = np.exp(scores)
102
# normalize them for each example
0 commit comments