Predicting the orbit!
You've already trained a model
that approximates the orbit of the meteor approaching Earth and it's loaded for you to use.
Since you trained your model for values between -10 and 10 minutes, your model hasn't yet seen any other values for different time steps. You will now visualize how your model behaves on unseen data.
If you want to check the source code of plot_orbit
, paste show_code(plot_orbit)
into the console.
Hurry up, the Earth is running out of time!
Remember np.arange(x,y)
produces a range of values from x to y-1. That is the [x, y)
interval.
This exercise is part of the course
Introduction to Deep Learning with Keras
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Predict the twenty minutes orbit
twenty_min_orbit = ____.____(np.arange(____, ____))
# Plot the twenty minute orbit
plot_orbit(twenty_min_orbit)