Skip to content

Commit

Permalink
small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturoAmorQ committed Sep 19, 2024
1 parent 4dcd7fd commit 1fb1e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_scripts/logistic_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
# by name or position. In the code above `logistic_regression[-1]` means the
# last step of the pipeline. Then you can access the attributes of that step such
# as `coef_`. Notice also that the `coef_` attribute is an array of shape (1,
# `n_features`) an then we access it via its first entry. Alternatively one
# `n_features`) and then we access it via its first entry. Alternatively one
# could use `coef_.ravel()`.
#
# We are now ready to visualize the weight values as a barplot:
Expand Down

0 comments on commit 1fb1e81

Please sign in to comment.