Skip to content

Commit 7aef079

Browse files
author
Chetanfs
committed
HW6 done
1 parent f488cb4 commit 7aef079

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1374
-341
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
# Problem 9/10
3+
4+
### following function relates number of nodes in first hidden layer to overall num of weights given
5+
### constraints of the neural network described in problems 9/10 of
6+
### https://work.caltech.edu/homework/hw6.pdf
7+
### Assumes that if you have less than 17 nodes in layer 1, nodes are laid out symmetrically
8+
numWeights <- function(x) {
9+
if (x <= 16)
10+
10*(x-1)+(x-1)^2*(36/x-1)+(36/x-1)*(x-1)+x
11+
else
12+
10*(x-1)+(x-1)*(36-x-1)+(36-x-1)+36-x
13+
}
14+
15+
### Let's plot to find min/max
16+
plot(1:36, unlist(lapply(1:36, numWeights)))
17+
18+
### Or if you don't like pictures
19+
which.min(unlist(lapply(1:36, numWeights))) # min is at 1 node per layer
20+
which.max(unlist(lapply(1:36, numWeights))) # max is at 23 nodes
21+
22+
23+

Learning from Data HW6.docx

300 KB
Binary file not shown.

Learning from Data HW7 #6.R

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
library(data.table)
2+
3+
dt <- data.table(a=runif(10E4), b=runif(10E4))
4+
dt[,mean(pmin(a, b))]

Learning from Data HW7.docx

260 KB
Binary file not shown.
16.5 KB
Binary file not shown.
17.4 KB
Binary file not shown.

hw2Programs/.idea/workspace.xml

+174-118
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hw4Programs/.idea/workspace.xml

+51-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.

hw5-6-7Programs/.idea/libraries/Jama_1_0_32.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hw5Programs/.idea/misc.xml hw5-6-7Programs/.idea/misc.xml

-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)