Chapter 5 error back propagation

The fourth chapter introduces the implementation of a two-layer neural network, in which the method of obtaining the gradient is numerical differentiation. This method is relatively simple, but the speed is slow. This will greatly affect the performance of neural network. This paper introduces a faster method to obtain the gradient, whic ...

Added by carrotcake1029 on Wed, 02 Feb 2022 02:43:14 +0200

Configuring python virtual environment on remote server through Anaconda under Mac os

1, SSH management software Here I recommend a software I am using, termius. Termius is a very easy to use and beautiful SSH client, which can quickly control the server remotely and customize your favorite themes Termius not only covers Windows, Linux and OSX, but also supports Android and iOS (in the future, you can take out your mobile phone ...

Added by the_NEWBIE_ON_THE_BLOCK on Wed, 02 Feb 2022 02:31:04 +0200

Train an image classifier with one line of code (Luwu Tutorial Series)

Hello, guys, long time no see... (really * long time no see =.) I haven't written a blog for a long time. To apologize, I spent the whole day on the big guys today ~ that's the theme I'm going to talk about this time - Luwu~ So, what is Luwu? It's a spicy chicken open source project written by bencai chicken What's the use of this spicy ch ...

Added by polarbear66 on Tue, 01 Feb 2022 21:25:37 +0200

Novice zero foundation tutorial: running cornernet under Windows_ Lite source code

·For related learning of CornerNet, please refer to my other articles~ This article is more detailed. Zero basic Xiaobai can also run out of the program through this article. The author is just getting started. If there are deficiencies, please point out more! 1, Foreword 1. Relevant references The key to this tutorial is to re ...

Added by JamieWAstin on Tue, 01 Feb 2022 19:20:17 +0200

Implementation of keras version of DeepLab-V3 + semantic segmentation Neural Network

Implementation of keras version of DeepLab-V3 + semantic segmentation Neural Network network structure Deeplab series network models are developed from ResNet residual module, and on this basis, they are integrated with the implementation of empty convolution. Compared with Deeplab v3, Deeplab v3 + introduces the encoder decoder structure c ...

Added by phorman on Mon, 31 Jan 2022 09:09:55 +0200

[beginners learn PyTorch tutorial] I. Basic operation of PyTorch

@Author: Runsen What is PyTorch? This is a Python based scientific computing package for two groups of audiences: NumPy is an alternative to take advantage of the power of GPU. Provide a deep learning research platform with maximum flexibility and speed. tensor Tensors are similar to NumPy's n-dimensional array. In addition, tensors ca ...

Added by MishieMoo on Mon, 31 Jan 2022 07:12:12 +0200

[RL] Q learning algorithm based on neural network (deep learning) (DQN)

DQN introduction DQN(Deep Q-Learning)It is the combination of deep learning and reinforcement learning Q-table He is too big to build words to use DQN Is a good choice. DQN algorithm mainly uses experience replay (experience pool) to realize the convergence of value function. The Deep Q-learning method is used to iteratively update Q (s, ...

Added by daz_effect on Fri, 28 Jan 2022 20:08:16 +0200

Ex3_ Machine learning_ Wu Enda's course assignment (Python): multi class classification & Neural Networks

Ex3_ Machine learning_ Wu Enda's course assignment (Python): multi class classification & Neural Networks instructions: This article is about Mr. Wu Enda's learning notes of the machine learning course on Coursera. The first part of this paper first introduces the knowledge review and key notes of the corresponding week of the c ...

Added by fr@nkie on Thu, 27 Jan 2022 21:10:38 +0200

GNN-4-dataset class and practice of node prediction and edge prediction tasks

Reference open source learning address: datawhale 1. Introduction to inmemorydataset base class In PyG, we inherit InMemoryDataset Class to customize a dataset class that can store all data in memory. class InMemoryDataset(root: Optional[str] = None, transform: Optional[Callable] = None, pre_transform: Optional[Callable] = None, pre_filter: ...

Added by djcritch on Wed, 26 Jan 2022 03:33:19 +0200

A small record of neural network learning 67 -- a detailed explanation of the reproduction of Vision Transformer (VIT) model in pytoch

Study Preface Visual Transformer is very hot recently. I'll learn from VIT first. What is Vision Transformer (VIT) Vision Transformer is the visual version of transformer. Transformer has basically become the standard configuration of natural language processing, but its application in vision is still limited. Vision Transformer breaks ...

Added by asukla on Mon, 24 Jan 2022 19:56:06 +0200