You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But I don't think this is correct, any suggestion please ??
The text was updated successfully, but these errors were encountered:
Abduoit
changed the title
test_xs, test_ys = unzip(list(read_data("test/*.png"))[:batch_size])
Only the first 50 images considered during training ? !!!
Jan 29, 2019
I think that is only for the doreport when printing out the labeled license plates and the predictions in any case since batch_size = 50 your two lines of code seem to do exactly the same. When training, plate images are generated on the fly and the output from the network is compared to those so that loss can be minimized using gradient descent.
Regards
@mazcallu
Do you mean the number 50 is just for printing out the images in the terminal, but the actual training batch is happening based on the whole images in test folder.
I just want to make sure that training process is not only considering the first 50 images, it consider the whole images
Hi,
During the training, I noticed that the network always takes the first 50 images only,
I found this line in the
train.py
test_xs, test_ys = unzip(list(read_data("test/*.png"))[:50])
I changed it to this
test_xs, test_ys = unzip(list(read_data("test/*.png"))[:batch_size])
But I don't think this is correct, any suggestion please ??
The text was updated successfully, but these errors were encountered: