We’ve used it in previous labs, but the one I’m viewing is HERE.
# load dataset
X, y = load_data()
The load_data()
function is called to set values for X
and y
, though I’m not sure exactly where it is getting the data from. In other words, where and how is the data stored and how do you know the load_data()
function is available for use?