0
0
TensorFlowml~5 mins

Time series with RNN in TensorFlow - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a time series in machine learning?
A time series is a sequence of data points collected or recorded at regular time intervals. It shows how something changes over time, like daily temperatures or stock prices.
Click to reveal answer
beginner
Why do we use RNNs for time series data?
RNNs (Recurrent Neural Networks) are good for time series because they remember information from previous steps, helping the model understand patterns over time.
Click to reveal answer
intermediate
What does the 'state' in an RNN represent?
The 'state' in an RNN holds information from previous time steps. It acts like memory, helping the network keep track of what it learned before to make better predictions.
Click to reveal answer
beginner
What is the purpose of splitting time series data into training and testing sets?
Splitting helps us train the model on past data and test it on unseen future data to check if the model can predict well on new time points.
Click to reveal answer
intermediate
How do you evaluate the performance of an RNN on time series forecasting?
Common metrics include Mean Squared Error (MSE) or Mean Absolute Error (MAE), which measure how close the model's predictions are to the actual values.
Click to reveal answer
What type of neural network is best suited for time series data?
ARecurrent Neural Network (RNN)
BConvolutional Neural Network (CNN)
CFeedforward Neural Network
DGenerative Adversarial Network (GAN)
In time series forecasting, why is it important to keep the order of data?
ABecause it helps in data normalization
BBecause shuffling improves model accuracy
CBecause order does not matter in time series
DBecause time order carries important information about trends and patterns
Which metric measures the average squared difference between predicted and actual values?
AMean Absolute Error (MAE)
BMean Squared Error (MSE)
CAccuracy
DPrecision
What does the 'state' in an RNN help the model do?
ARemember information from previous time steps
BForget previous inputs
CIncrease the size of the input data
DNormalize the data
When preparing time series data for RNN, what is a common step?
AConvert data into images
BRandomly shuffle all data points
CSplit data into sequences of fixed length
DRemove all time stamps
Explain how an RNN processes time series data step-by-step.
Think about how memory helps in understanding sequences.
You got /4 concepts.
    Describe how you would prepare and evaluate a time series forecasting model using RNN.
    Consider data preparation, model training, and checking results.
    You got /4 concepts.