Let's say that I wanted to train a ConvNet to tell me if in a photo it is raining or not, how will the procedures be?
Given that I have two train variables, trainX
and trainY
, the trainX
will be the photo and trainY
will be the labels (e.g. rain
or no-rain
).
The goal of the network is to output the "right" answer. The question is: do I just need to run the model.predict()
function and expect valid results?
Thank you for any help in advance.