Enrollments closing soon for Post Graduate Certificate Program in Applied Data Science & AI By IIT Roorkee | 3 Seats Left
Apply NowLogin using Social Account
     Continue with GoogleLogin using your credentials
Import time module.
import  << your code comes here >>
Use start = time.time() to record the start time of training execution.
start = time.time()
Use fit on stacked_ae to train on X_train, X_train for 20  epochs and validation_data=(X_valid, X_valid).
history = stacked_ae.<< your code comes here >>(X_train, X_train, epochs=20,
                 validation_data=(X_valid, X_valid))
Use end = time.time() to record the end time of training execution.
end = time.time()
Print the time of execution:
print("Time of execution:", round(end-start,2),"seconds")
            Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
No hints are availble for this assesment
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...