We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ec44ae7 + 4881568 commit 5cf6041Copy full SHA for 5cf6041
.gitignore
@@ -0,0 +1 @@
1
+__pycache
Fall20/NeuralNetworks1/vectorized.py
@@ -10,6 +10,8 @@ def average_nn(x):
10
[1/3, 1/3, 1/3] # a weights matrix of size 1 x 3
11
)
12
bias = 0
13
+
14
+ # we perform wx + b, using np.matmul to multiply matrices w and x
15
weighted_input = np.matmul(weights, x) + bias
16
y = activation(weighted_input)
17
return y
README.md
@@ -0,0 +1,5 @@
+# ACM AI Workshops
2
3
+This is the repository with all workshop content code etc. for ACM AI, with content organized by quarter offered
4
5
+Check out https://ai.acmucsd.com for more details about upcoming workshops and the exciting stuff going on at ACM AI!
0 commit comments