0
0
TensorFlowml~5 mins

First neural network in TensorFlow - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a neural network in simple terms?
A neural network is a computer program that learns from examples, like how our brain learns from experience. It helps computers recognize patterns and make decisions.
Click to reveal answer
beginner
What is the role of layers in a neural network?
Layers are like steps in a recipe. Each layer processes information and passes it to the next, helping the network understand complex patterns step by step.
Click to reveal answer
beginner
What does 'training a neural network' mean?
Training means showing the network many examples so it can learn to make good guesses or predictions on new data.
Click to reveal answer
intermediate
What is the purpose of the activation function in a neural network?
An activation function helps the network decide if a neuron should be active or not, adding the ability to learn complex patterns beyond simple straight lines.
Click to reveal answer
intermediate
What does the loss function measure during training?
The loss function measures how far the network's predictions are from the correct answers. The goal is to make this number as small as possible.
Click to reveal answer
What is the first step when creating a neural network in TensorFlow?
ADefine the model architecture
BTrain the model
CEvaluate the model
DMake predictions
Which layer is usually the last in a neural network for classification?
AInput layer
BOutput layer
CHidden layer
DConvolutional layer
What does the activation function 'relu' do?
AOutputs negative values only
BOutputs values between 0 and 1
COutputs zero for negative inputs and passes positive inputs as is
DOutputs the sum of inputs
Why do we split data into training and testing sets?
ATo train and then check how well the model learned
BTo make the model bigger
CTo speed up training
DTo reduce the number of layers
What does a lower loss value indicate during training?
AFaster training
BWorse model predictions
CMore layers needed
DBetter model predictions
Explain how a simple neural network learns to recognize patterns.
Think about how information flows and improves step by step.
You got /4 concepts.
    Describe the steps to build and train your first neural network using TensorFlow.
    Remember the order: build, compile, train, evaluate.
    You got /4 concepts.