You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's investigate some more Deep Learning models. First, we explore the evolution over training time (number of passes over the data), and we use checkpointing to continue training the same model:
86
86
87
87
```r
88
-
dev.new(noRStudioGD=FALSE) #direct plotting output to a new window
88
+
#dev.new(noRStudioGD=FALSE) #direct plotting output to a new window
89
89
par(mfrow=c(2,2)) #set up the canvas for 2x2 plots
90
90
epochs=1
91
91
previous=epochs
@@ -104,10 +104,9 @@ for (epochs in c(200,500,1000)) {
104
104
Now, we explore different network architectures:
105
105
106
106
```r
107
-
dev.new(noRStudioGD=FALSE) #direct plotting output to a new window
107
+
#dev.new(noRStudioGD=FALSE) #direct plotting output to a new window
108
108
par(mfrow=c(2,2)) #set up the canvas for 2x2 plots
109
109
for (hiddeninlist(c(11,13,17,19),c(42,42,42),c(200,200),c(1000))) {
0 commit comments