Hey guys, I’m currently working through the second programming assignment of the course (at the end of week 3), and I’m kinda confused about which datasets I’m using in each part of the code.
For example, in week 3’s assignment we start using the flower dataset, and then go on towards building the shallow neural network model from scratch.
At the first step we need to compute the sizes of the input and output layer, and by looking at the flower dataset I know the input size of the model must be 2, right? (because there are two features, x and y, for each point of our dataset. But after computing the sizes using the variables X and Y provided with the code, I found out that the input size is 5 for some reason? Are we still using the flower dataset for the whole assignment? or was that for the introduction and we’re using a different one now? Because I don’t recall seeing a size 5 in the flower dataset.
I had the same issue with the lineal regression assignment, when we started building the model the sizes of the dataset started to change and that was confusing but I decided to just roll with it.