Finals Lectures Flashcards
Identify
System of interconnected neurons that mimics the human brain’s ability to process information
2 words
NEURAL NETWORK
Neural Network
Identify
Can recognize patterns and correlations in raw data, cluster and classify it, and continuously learn and improve.
2 words
NEURAL NETWORK
Neural Network
Identify
Basic building block of a neural network, modeled after biological neurons in the human brain.
1 word
NEURAL NETWORK
Neuron
Identify
Receives inputs, processes them by applying weights and biases, and passes the result through an activation function to produce an output.
1 word
NEURAL NETWORK
Neuron (Function)
Identify
Parameters in a neural network that determine the importance of each input.
1 word
NEURAL NETWORK
Weights
Identify
They scale the input values before they are summed up in the neuron. Inputs with higher weights contribute more to the neuron’s decision.
1 word
NEURAL NETWORK
Weights (Purpose)
Identify
Constant value added to the weighted sum of inputs before applying the activation function.
1 word
NEURAL NETWORK
Bias
Identify
It helps shift the activation function curve to better fit the data, allowing the model to represent patternsmore flexibly.
1 word
NEURAL NETWORK
Bias (Purpose)
Identify
Determines whether a neuron ‘fires’ and produces an output.
2 words
NEURAL NETWORK
Activation Function
Identify
It introduces non-linearity into the network, enabling it to learn complex patterns.
2 words
NEURAL NETWORK
Activation Function
Identify
Produces outputs between 0 and 1, useful for probabilities.
2 words
NEURAL NETWORK - Common Activation Function
Sigmoid Function
Identify
Outputs the input directly if it’s positive; otherwise, 0.
3 words or shortened 1 word
NEURAL NETWORK - Common Activation Function
ReLU (Rectified Linear Unit)
Identify
Training, validation, and test sets.
1 word
NEURAL NETWORK - Common Activation Function
Dataset
Identify
Data flows through the network.
2 words
NEURAL NETWORK - Common Activation Function
Forward Propagation
Identify
Adjusts weights using the error gradient.
2 words
NEURAL NETWORK - Common Activation Function
Backward Propagation
Identify
Repeated adjustments to improve performance.
1 word
NEURAL NETWORK - Common Activation Function
Iterations (Epochs)
Identify
Simplest type of neural network.
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Feedforward Neural Network (FNN)
Identify
information flows in one direction—from input to output
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Feedforward Neural Network (FNN)
Identify
Used for tasks where inputs and outputs are straightforward.
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Feedforward Neural Network (FNN)
Identify
No complex patterns or sequences are involved; it just maps input data to output values.
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Feedforward Neural Network (FNN)
Identify (Example)
Predicting house prices
1 word
NEURAL NETWORK - Types of Neural Network
Task (Feedforward Neural Network (FNN))
Identify (Example)
House size, number of bedrooms, location rating.
1 word
NEURAL NETWORK - Types of Neural Network
Inputs (Feedforward Neural Network (FNN))
Identify (Example)
Estimated price of the house.
1 word
NEURAL NETWORK - Types of Neural Network
Output (Feedforward Neural Network (FNN))
Identify
Specially designed for image and video data.
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Convolutional Neural Networks (CNN)
Identify
Recognizes patterns, edges, and features in visuals by applying filters.
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Convolutional Neural Networks (CNN)
Identify
It’s excellent at analyzing spatial features like shapes, textures, and colors in images.
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Convolutional Neural Networks (CNN)
Identify (Example)
Identifying cats and dogs in pictures.
1 word
NEURAL NETWORK - Types of Neural Network
Task (Convolutional Neural Networks (CNN))
Identify (Example)
Images of animals
1 word
NEURAL NETWORK - Types of Neural Network
Inputs (Convolutional Neural Networks (CNN))
Identify (Example)
Label (“Cat” or “Dog”)
1 word
NEURAL NETWORK - Types of Neural Network
Output (Convolutional Neural Networks (CNN))
Identify
Processes sequential data by remembering past inputs while processing current ones
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Recurrent Neural Network (RNN)
Identify
Useful for tasks where the order of data matters
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Recurrent Neural Network (RNN)
Identify
It can retain information about previous words to make the prediction contextually accurate
3 words or abbreviation
NEURAL NETWORK - Types of Neural Network
Recurrent Neural Network (RNN)
Identify (Example)
Predicting the next word in a sentence.
1 word
NEURAL NETWORK - Types of Neural Network
Task (Predicting the next word in a sentence.)
Identify (Example)
A sequence of words like “I love neural…”
1 word
NEURAL NETWORK - Types of Neural Network
Inputs (Predicting the next word in a sentence.)
Identify (Example)
Predicted word (“networks”).
1 word
NEURAL NETWORK - Types of Neural Network
Output (Predicting the next word in a sentence.)
Identify
Process of discovering patterns in large datasets.
2 words
Data Mining
Data Mining
Identify
It’s a multidisciplinary field that uses techniques from machine learning, statistics and database systems.
2 words
Data Mining
Data Mining
Fill in the blanks
Extract ? information
1 word
Data Mining - Goals
useful
Fill in the blanks
Make ? decisions
2 words
Data Mining - Goals
data-driven
Identify
Organized and easy to search and analyze because it is stored in predefined formats.
2 words
Data Mining - Types of Data
Structured Data
Identify
It has rows and columns, with each column assigned a specific type of data.
2 words
Data Mining - Types of Data
Structured Data
Identify
Does not have a fixed format, making it harder to organize and analyze directly.
2 words
Data Mining - Types of Data
Unstructured Data
Identify
It can include text, images, audio, video, or any other data format that doesn’t fit neatly into rows and columns.
2 words
Data Mining - Types of Data
Unstructured Data
Identify
The crucial first step in any data analysis or machine learning pipeline.
2 words
Data Mining
Data Preprocessing
Identify
It involves cleaning, organizing, and transforming raw data into a usable format for analysis.
2 words
Data Mining
Data Preprocessing
Identify
? is often incomplete, noisy, or inconsistent, making it difficult to analyze or use effectively.
2 words
Data Mining - Data Preprocessing
Raw data
Identify
? ensures the quality, reliability, and performance of your models.
2 words
Data Mining - Data Preprocessing
Proper preprocessing
Identify
replace missing values with mean/median (for numerical data) or mode (for categorical data), or remove rows/columns with too many missing values.
2 words and 3 words (Key Step Term and Term under it)
Data Mining - Key Steps in Data Preprocessing
Data Cleaning (Handling Missing Values)