The Complete Neural Networks Bootcamp: Theory, Applications

  • 1594
  • 0
  • 0
  • 0
wolves-头像
The Complete Neural Networks Bootcamp: Theory, Applications
收藏
  • The Complete Neural Networks Bootcamp: Theory, Applications-缩略图
  • 举报
  • 点赞
  • 0
  • 分享

素材介绍

The Complete Neural Networks Bootcamp Theory Applications

2/2021 ,37 个章节 • 279 个讲座 • 总时长 38 小时 55 分钟



Master Deep Learning and Neural Networks Theory and Applications with Python and PyTorch! Including NLP and Transformers







What you'll learn







Understand How Neural Networks Work (Theory and Applications)







Understand How Convolutional Networks Work (Theory and Applications)







Understand How Recurrent Networks and LSTMs work (Theory and Applications)







Learn how to use PyTorch in depth







Understand how the Backpropagation algorithm works







Understand Loss Functions in Neural Networks







Understand Weight Initialization and Regularization Techniques







Code-up a Neural Network from Scratch using Numpy







Apply Transfer Learning to CNNs







CNN Visualization







Learn the CNN Architectures that are widely used nowadays







Understand Residual Networks in Depth







Understand YOLO Object Detection in Depth







Visualize the Learning Process of Neural Networks







Learn how to Save and Load trained models







Learn Sequence Modeling with Attention Mechanisms







Build a Chatbot with Attention







Transformers







Build a Chatbot with Transformers







Requirements







Some Basic Python Expreience is preferable







Some High School Mathematics







Description







This course is a comprehensive guide to Deep Learning and Neural Networks. The theories are explained in depth and in a friendly manner. After that, we'll have the hands-on session, where we will be learning how to code Neural Networks in PyTorch, a very advanced and powerful deep learning framework!







The course includes the following Sections:







--------------------------------------------------------------------------------------------------------







Section 1 - How Neural Networks and Backpropagation Works







In this section, you will deeply understand the theories of how neural networks and the backpropagation algorithm works, in a friendly manner. We will walk through an example and do the calculations step-by-step. We will also discuss the activation functions used in Neural Networks, with their advantages and disadvantages!







Section 2 - Loss Functions







In this section, we will introduce the famous loss functions that are used in Deep Learning and Neural Networks. We will walk through when to use them and how they work.







Section 3 - Optimization







In this section, we will discuss the optimization techniques used in Neural Networks, to reach the optimal Point, including Gradient Descent, Stochastic Gradient Descent, Momentum, RMSProp, Adam, AMSGrad, Weight Decay and Decoupling Weight Decay, LR Scheduler and others.







Section 4 - Weight Initialization







In this section,we will introduce you to the concepts of weight initialization in neural networks, and we will discuss some techniques of weights initialization including Xavier initialization and He norm initialization.







Section 5 - Regularization Techniques







In this section, we will introduce you to the regularization techniques in neural networks. We will first introduce overfitting and then introduce how to prevent overfitting by using regularization techniques, inclusing L1, L2 and Dropout. We'll also talk about normalization as well as batch normalization and Layer Normalization.







Section 6- Introduction to PyTorch







In this section, we will introduce the deep learning framework we'll be using through this course, which is PyTorch. We will show you how to install it, how it works and why it's special, and then we will code some PyTorch tensors and show you some operations on tensors, as well as show you Autograd in code!







Section 7 - Practical Neural Networks in PyTorch - Application 1







In this section, you will apply what you've learned to build a Feed Forward Neural Network to classify handwritten digits. This is the first application of Feed Forward Networks we will be showing.







Section 8 - Practical Neural Networks in PyTorch - Application 2







In this section, we will build a feed forward Neural Network to classify weather a person has diabetes or not. We will train the network on a large dataset of diabetes!







Section 9 - Visualize the Learning Process







In this section, we will visualize how neural networks are learning, and how good they are at separating non-linear data!







Section 10 - Implementing a Neural Network from Scratch with Python and Numpy







In this section, we will understand and code up a neural network without using any deep learning library (from scratch using only python and numpy). This is necessary to understand how the underlying structure works.







Section 11 - Convolutional Neural Networks







In this section, we will introduce you to Convolutional Networks that are used for images. We will show you first the relationship to Feed Forward Networks, and then we will introduce you the concepts of Convolutional Networks one by one!







Section 12 - Practical Convolutional Networks in PyTorch







In this section, we will apply Convolutional Networks to classify handwritten digits. This is the first application of CNNs we will do.







Section 13- Deeper into CNN: Improving and Plotting







In this section, we will improve the CNN that we built in the previous section, as well show you how to plot the results of training and testing! Moreover, we will show you how to classify your own handwritten images through the network!







Section 14 - CNN Architectures







In this section, we will introduce the CNN architectures that are widely used in all deep learning applications. These architectures are: AlexNet, VGG net, Inception Net, Residual Networks and Densely Connected Networks. We will also discuss some object detection architectures.







Section 15- Residual Networks







In this section, we will dive deep into the details and theory of Residual Networks, and then we'll build a Residual Network in PyTorch from scratch!







Section 16 - Transfer Learning in PyTorch - Image Classification







In this section, we will apply transfer learning on a Residual Network, to classify ants and bees. We will also show you how to use your own dataset and apply image augmentation. After completing this section, you will be able to classify any images you want!







Section 17- Convolutional Networks Visualization







In this section, we will visualize what the neural networks output, and what they are really learning. We will observe the feature maps of the network of every layer!







Section 18 - YOLO Object Detection (Theory)







In this section, we will learn one of the most famous Object Detection Frameworks: YOLO!! This section covers the theory of YOLO in depth.







Section 19 - Autoencoders and Variational Autoencoders







In this section, we will cover Autoencoders and Denoising Autoencoders. We will then see the problem they face and learn how to mitigate it with Variational Autoencoders.







Section 20 - Recurrent Neural Networks







In this section, we will introduce you to Recurrent Neural Networks and all their concepts. We will then discuss the Backpropagation through time, the vanishing gradient problem, and finally about Long Short Term Memory (LSTM) that solved the problems RNN suffered from.







Section 21 - Word Embeddings







In this section, we will discuss how words are represented as features. We will then show you some Word Embedding models. We will also show you how to implement word embedding in PyTorch!







Section 22 - Practical Recurrent Networks in PyTorch







In this section, we will apply Recurrent Neural Networks using LSTMs in PyTorch to generate text similar to the story of Alice in Wonderland! You can just replace the story with any other text you want, and the RNN will be able to generate text similar to it!







Section 23 - Sequence Modelling







In this section, we will learn about Sequence-to-Sequence Modelling. We will see how Seq2Seq models work and where they are applied. We'll also talk about Attention mechanisms and see how they work.







Section 24 - Practical Sequence Modelling in PyTorch - Build a Chatbot







In this section, we will apply what we learned about sequence modeling and build a Chatbot with Attention Mechanism.







Section 25 - Saving and Loading Models







In this section, we will show you how to save and load models in PyTorch, so you can use these models either for later testing, or for resuming training!







Section 26 - Transformers







In this section, we will cover the Transformer, which is the current state-of-art model for NLP and language modeling tasks. We will go through each component of a transformer.







Section 27 - Build a Chatbot with Transformers







In this section, we will implement all what we learned in the previous section to build a Chatbot using Transformers.







Who this course is for?







Anyone who in interested in learning about Neural Networks and Deep Learning







Homepage







https://www.udemy.com/course/the-complete-neural-networks-bootcamp-theory-applications/







wolves-头像
  • 166
  • 12443550
  • 77组电影外观Log/Rec709视频还原色彩分级调色Lut预设包Pixflow – Colorify Cinematic LUTs
    77组电影外观Log/Rec709视频还原色彩分级调色Lut预设包Pixflow – Colorify Cinematic LUTs
    • 200
    • 0
    • 0
    • 0
  • 复古怀旧电影风格温暖色调索尼Sony S-Log3视频调色LUT预设ROMAN HENSE – LUTs 24 for Sony S-Log3
    复古怀旧电影风格温暖色调索尼Sony S-Log3视频调色LUT预设ROMAN HENSE – LUTs 24 for Sony S-Log3
    • 227
    • 0
    • 0
    • 0
  • JUAN MELARA – P6K2Alexa PowerGrade AND LUTs V2 GEN 5
    JUAN MELARA – P6K2Alexa PowerGrade AND LUTs V2 GEN 5
    • 173
    • 0
    • 0
    • 0

评论(0)

  • 热评
  • 所有评论
还没有评论哦~
还没有评论哦~

关键词

  • The-Complete
  • Neural-Networks
  • Bootcamp
  • Theory-Applications
  • 近期更新
  • 热评推荐
  • 热门点击
77组电影外观Log/Rec709视频还原色彩分级调色Lut预设包Pixflow – Colorify Cinematic LUTs

77组电影外观Log/Rec709视频还原色彩分级调色Lut预设包Pixflow – Colorify Cinematic LUTs

2025-02-13 11:03:14

复古怀旧电影风格温暖色调索尼Sony S-Log3视频调色LUT预设ROMAN HENSE – LUTs 24 for Sony S-Log3

复古怀旧电影风格温暖色调索尼Sony S-Log3视频调色LUT预设ROMAN HENSE – LUTs 24 for Sony S-Log3

2025-02-13 11:01:09

JUAN MELARA – P6K2Alexa PowerGrade AND LUTs V2 GEN 5

JUAN MELARA – P6K2Alexa PowerGrade AND LUTs V2 GEN 5

2025-02-13 10:58:24

469组终极照片调色LR预设视频LUT调色预设合集包 TheLutBay – The Ultimate Bundle

469组终极照片调色LR预设视频LUT调色预设合集包 TheLutBay – The Ultimate Bundle

2025-02-13 10:56:32

诺兰《奥本海默》紧迫感幽闭恐惧症高级复古电影胶片风深黑色调后期色彩分级LUT预设 Tropic Colour – OPPENHEIMER LOOKS

诺兰《奥本海默》紧迫感幽闭恐惧症高级复古电影胶片风深黑色调后期色彩分级LUT预设 Tropic Colour – OPPENHEIMER LOOKS

2025-02-13 10:53:58

3DsMax建模插件集合:rapidTools v1.14+使用教程

3DsMax建模插件集合:rapidTools v1.14+使用教程

2020-07-06 17:44:38

Proko-人体解剖高级付费版(中文字幕)256课

Proko-人体解剖高级付费版(中文字幕)256课

2020-12-21 18:34:01

VitaliStore - All Design Bundle Papercraft Sculptures Design 动物纸模模型 纸模型雕塑设计

VitaliStore - All Design Bundle Papercraft Sculptures Design 动物纸模模型 纸模型雕塑设计

2020-07-21 17:18:14

小武拉莫日系摄影后期第二期中文视频教程

小武拉莫日系摄影后期第二期中文视频教程

2021-12-10 14:26:14

Mod Portfolio 3477506 画册模板 时尚杂志画册模版

Mod Portfolio 3477506 画册模板 时尚杂志画册模版

2020-07-13 10:43:06

小武拉莫日系摄影后期第二期中文视频教程

小武拉莫日系摄影后期第二期中文视频教程

2021-12-10 14:26:14

VitaliStore - All Design Bundle Papercraft Sculptures Design 动物纸模模型 纸模型雕塑设计

VitaliStore - All Design Bundle Papercraft Sculptures Design 动物纸模模型 纸模型雕塑设计

2020-07-21 17:18:14

MasterClass 大师班课程84套合集+中文字幕+持续更新+赠品会员

MasterClass 大师班课程84套合集+中文字幕+持续更新+赠品会员

2021-01-26 16:03:27

加特林机枪模型 加特林机关枪 Minigun Hi-Poly

加特林机枪模型 加特林机关枪 Minigun Hi-Poly

2019-07-31 11:06:07

3DDD 3DSky PRO models – April 2021

3DDD 3DSky PRO models – April 2021

2021-08-09 17:15:13

标签云

  • The-Complete
  • Neural-Networks
  • Bootcamp
  • Theory-Applications

相关资源/猜你喜欢