November 2018
Intermediate to advanced
556 pages
14h 42m
English
We know nothing about NASA engines, nor how they operate. We only have data. We have a lot of it, however, so we will use a data-driven model. The model will be based on an RNN using Keras and TensorFlow. The basic steps to build our model are:
Below the code of the algorithm:
# fit the modelimport mathfrom keras.models import Sequentialfrom keras.layers import Densefrom sklearn.preprocessing import MinMaxScaler ...