Chapter 2 - Supervised Network (Perceptron) Flashcards
What are Artificial Neural Networks (ANNs) described as?
hey are described as self-learning mechanisms that do not require traditional programming skills
What is a key component of an artificial neural network?
It consists of interconnected processors called neurons
How do neurons in an ANN communicate?
They communicate through weighted links that pass signals from one neuron to another
How many output signals does a neuron produce?
A neuron produces only one output signal
What is the role of weights in ANNs?
Weights are a means of long-term memory, and they express the strength or importance of connections
How does a neural network learn?
It learns by repeatedly adjusting the weights
What is the main idea behind supervised learning?
Training a model on a labeled dataset, where input data is paired with the correct output, allowing the model to learn how to map inputs to outputs
How does a supervised learning model learn?
By minimizing the error between its predictions and the actual labels
What are the two main phases in supervised learning?
Training and testing
Give an example of a supervised learning task.
Image classification, spam detection, predictive maintenance, and medical diagnosis are all examples of supervised learning tasks
What is the goal of regression?
To predict a continuous outcome based on one or more input features
What is linear regression?
The simplest form of regression, which models the relationship between the input and output as a straight line
How is linear regression visualized?
Using scatter plots with a regression line and plots showing the cost function’s surface with gradient descent
Why is linear regression a good starting point for machine learning problems?
Because it is simple and interpretable, especially when the relationship between the features and the target is linear
What are the limitations of linear regression?
It is limited when the relationship between input and output is nonlinear, or when there are complex interactions between features