Eng PPT Tech
Eng PPT Tech
• Categories:
Supervised Learning
Unsupervised Learning
Reinforcement Learning
BIOLOGICAL VS ARTIFICIAL NEURONS
Aspect Biological Neuron Artificial Neuron
*Used for:
Image classification, object detection, etc.
*Layers:
Convolution: Extracts features using filters.
*Pooling:
Downsamples to reduce dimensionality.
*Flattening:
Converts data for fully connected layers.
*Example:
Classifying digits from images.
RNN-RECURRENT NEURAL NETWORK
*DESIGNED FOR:
Sequence data (e.g., time series, text).
*LOOPING MECHANISM:
Remembers previous steps using hidden states.
*VARIANTS:
LSTM (Long Short-Term Memory), GRU (Gated
Recurrent Unit).
*EXAMPLE:
Predicting next word in a sentence.
TRANSFORMERS
Replaces recurrence with attention.
*KEY CONCEPTS:
Self-attention: Learns relationships between
all tokens.
*POSITIONAL ENCODING:
Adds order info to input.
*IMPACT:
Revolutionized NLP (e.g., ChatGPT, BERT, T5).
*STRENGTH:
Processes entire sequences in parallel.
COMPARING NEURAL NETWORK TYPES
Network Type Used For Main Features
*TENSOR FLOW:
Developed by Google; versatile and scalable.
*PYTORCH:
Facebook’s framework; dynamic and flexible.
*KERAS:
User-friendly API; runs on TensorFlow backend.
*SCIKIT-LEARN:
Traditional ML with some NN support.
EXAMPLES USE CASE:DIGIT CLASSIFICATION
*Dataset:
MNIST – 28x28 pixel images of handwritten digits.
*Model:
Simple ANN with input, hidden, and output layers.
*Code Overview:
1. Load and preprocess data.
2.Build and compile the model.
3.Train and evaluate accuracy.
*Goal: Classify digits (0–9).
CHALLENGES IN NEURAL NETWORK
*OVERFITTING:
Model performs well on training but poorly on new data.
*LARGE DATA REQUIREMENTS:
Needs lots of labeled data.
*COMPUTATIONAL COST:
High memory and GPU usage.
*INTERPERTABILITY:
Difficult to understand model.
CONCLUSION AND FUTURE DIRECTIONS
*SUMMARY:
Neural networks are powerful ML tools.
Different architectures suit different tasks.
*TRENDS:
Transformer models dominating NLP.
Growing interest in efficient and explainable AI.
*ETHICS:
Bias, transparency, and accountability.