mirror of
https://github.com/GokuMohandas/Made-With-ML.git
synced 2026-03-09 07:12:37 -05:00
Foundations --> Neural Network #29
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @gitgithan on GitHub (Oct 17, 2021).
In the table at the top, outputs from second layer shows NxH should be NxC?
SyntaxError:
plt.scatter(X[:, 0], X[:, 1], c=[colors[_y] for _y in y], edgecolors="k"', s=25)Extra single quote behind "k" in notebookIs
def init_weights(self):used anywhere? It seems this was defined but not applied anywhere, or does pytorch implicitly apply it during some step? I was expectingmodel.apply(init_weights)somewhereThe objective is to have weights that are able to produce outputs that follow a similar distribution across all neuronsCould there be more clarity on this statement? What exactly is a "distribution across neurons" , and what does "similar" mean? What are the objects that we want similar? Is it we have 1 distribution per layer of neurons, and each neuron's single output value contributes to this discrete distribution of outputs in a layer, and we're comparing similarity across layers? (but this sounds wrong because each layer would have different number of neurons, can discrete distributions with different number of items in x-axis be compared?)
Is there missing - sign in term (with 1/y) on the left side of = a(y-1) in gradient derivation of dJ/dW2y
@GokuMohandas commented on GitHub (Oct 18, 2021):