Skip to content

Commit 9502a0c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7ff7948 commit 9502a0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

machine_learning/loss_functions/binary_cross_entropy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Formula:
99
BCE = -Σ(y_true * log(y_pred) + (1 - y_true) * log(1 - y_pred))
1010
11-
Source:
11+
Source:
1212
[Wikipedia - Cross entropy](https://en.wikipedia.org/wiki/Cross_entropy)
1313
"""
1414

machine_learning/loss_functions/mean_squared_error.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Formula:
99
MSE = (1/n) * Σ(y_true - y_pred)^2
1010
11-
Source:
11+
Source:
1212
[Wikipedia - Mean squared error](https://en.wikipedia.org/wiki/Mean_squared_error)
1313
"""
1414

0 commit comments

Comments
 (0)