Loading the data (cat/non-cat)
train_set_x_orig, train_set_y, test_set_x_orig, test_set_y, classes = load_dataset()
Please could you explain more how this line of code set the values for each set, how it knows which is the test and train set?
train_set_x_orig, train_set_y, test_set_x_orig, test_set_y, classes = load_dataset()
Please could you explain more how this line of code set the values for each set, how it knows which is the test and train set?
@Saif welcome to the community.
The types and order of dataset arguments is pre-defined in the load function.
Hope it helps.
Thanks a lot for your time and for the clarification