Khizar Aziz

Results 2 comments of Khizar Aziz

i have found the solution, so you just need to np.expand_dim() each image in tri_imgs array.. then pass tri_imgs array to model.predict(). it will work fine

The problem was related to the age_data_generator. `out2 = [candis.age.to_numpy(), np.array([two_point(x, category, interval) for x in candis.age.to_numpy()])] yield [imgs[:,0], imgs[:,1], imgs[:,2]], out2` I changed above code to: `out2 = np.array([two_point(x,...