· Sequential has no Attribution “validation_data”
Error description: Sequential has no attribution “validation_data”
Solutions:
here is the solution:
- use self.validation_data in your custom callback class
- provide validation_data = (x,y) in your fit method.
if point 2 is not done, self.validation_data will be empty.
hope this helps
Refer to the address