Skip to content

Commit 5cf6041

Browse files
committed
2 parents ec44ae7 + 4881568 commit 5cf6041

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__pycache

Fall20/NeuralNetworks1/vectorized.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ def average_nn(x):
1010
[1/3, 1/3, 1/3] # a weights matrix of size 1 x 3
1111
)
1212
bias = 0
13+
14+
# we perform wx + b, using np.matmul to multiply matrices w and x
1315
weighted_input = np.matmul(weights, x) + bias
1416
y = activation(weighted_input)
1517
return y

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# 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

Comments
 (0)