1
0
This commit is contained in:
2024-10-05 22:43:47 +08:00
parent 176e643f20
commit 804b63b2a3
37 changed files with 5317 additions and 53 deletions

9
mlcode/22.py Normal file
View File

@@ -0,0 +1,9 @@
import numpy as np
w = np.array([1, 2, 3])
b = 4
x = np.array([10, 20, 30])
f = np.dot(w, x) + b
print(f)