You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removes subjective jargon like "good" and "bad" from the model names in the documentation. The examples now use neutral, descriptive names like "Model A" and "Model B" for clarity and professionalism.
@@ -60,23 +60,23 @@ Often, you want to compare the performance of several different models on the *s
60
60
For this, you provide `probs` with an entry for each model you want to compare. `reals` will still have a single entry, since the outcome data is the same for all models.
61
61
62
62
```python
63
-
# Generate data for a "Good Model", a "Bad Model", and a "Random Guess"
64
-
#The "Good Model" has a clearer separation of probabilities.
65
-
good_probs_pos= np.random.rand(50) *0.4+0.6# 0.6 to 1.0
66
-
good_probs_neg= np.random.rand(50) *0.4# 0.0 to 0.4
0 commit comments