Re: 7- Performance on other datasets. The section says "If you want, you can rerun the whole notebook (minus the dataset part) for each of the following datasets. "
How do I get the whole notebook to run with an alternative data set? The original assignment uses from planar_utils import plot_decision_boundary, sigmoid, **load_planar_dataset**, load_extra_datasets
AND load_planar_dataset()
to import the original assignment data but when I tried switching the data out with the examples such as
datasets = {"noisy_circles": noisy_circles,
"noisy_moons": noisy_moons,
"blobs": blobs,
"gaussian_quantiles": gaussian_quantiles}
### START CODE HERE ### (choose your dataset)
dataset = "gaussian_quantiles"
### END CODE HERE ###
I am able to get the data set to plot under the Ex-7 (see below) cell but it doesn’t propagate throughout the rest of the assignment so that the function calls get updated with the new data.
I also tried to run each cell below 2 - Load the Dataset but the data set seemed to remain unchanged.