Update payload.py

Fix typo
This commit is contained in:
volltin
2020-11-07 15:20:33 +08:00
committed by GitHub
parent 8b76958a2c
commit a746850814
+1 -1
View File
@@ -39,7 +39,7 @@ def solve(img):
# pix sum vector, shape: (255, )
b = count_pix(img)
# Solve A^T.x = b using least-squares mathod
# Solve A^T.x = b using least-squares method
xf, *_ = np.linalg.lstsq(A.T, b, rcond=None)
# number matrix, shape: (62, )