Convolutional neural network UNET learning
Convolutional neural network UNET learning
Video portal (entrance of station B)
nn.Sequential
As an ordered container, the neural network module will be added to the calculation diagram in the order of the incoming constructor. At the same time, the ordered dictionary with the neural network module as the element can also be used as the inco ...
Posted by blackmamba on Thu, 24 Feb 2022 15:52:48 +0100
Deep learning pytorch framework -- convolutional neural network
This blog is only used to record the learning process, avoid forgetting and facilitate future review
Convolutional neural network is good at image processing. It is inspired by human visual nervous system. CNN has two characteristics: 1. It can effectively reduce the dimension of pictures with large amount of data into small amount of ...
Posted by thangappan on Tue, 22 Feb 2022 15:20:50 +0100
Reading Notes: Chapter 7 Convolutional Neural Network
Catalog
Chapter 7 Convolutional Neural Network
7.1 Overall Structure
7.2 Convolution Layer
Problems with 7.2.1 Full Connection Layer
7.2.2 Convolution
7.2.3 Fill
7.2.4 steps
Convolution of 7.2.5 3-D data
7.2.6 Combining Block Thinking
7.2.7 Batch Processing
7.3 Pooling Layer
7.4 Implementation of Convolution Layer and Pooling Layer ...
Posted by jimmygee on Mon, 07 Feb 2022 18:52:37 +0100
A simple convolutional neural network is realized from zero
For convolution formula Maybe some people know, maybe some people don't know, or just know but don't understand. But whether you know the meaning of this formula or not, it doesn't affect you to realize a convolution. I won't talk about his specific mathematical meaning first, because many people speak more clearly and thoroughly than I do. Wh ...
Posted by jimpat on Mon, 07 Feb 2022 14:16:53 +0100
Introduction to GCN convolution neural network + practical seal recognition -- detailed annotation and analysis of Enpei's works 4
Thank Enpei for the complete implementation of the project and open source the code for everyone to exchange and learn.
1, Project introduction
The final effect of this project is gesture control and mouse operation. As shown below
The project is implemented in python and calls opencv, mediapipe, python and other libraries. It consists ...
Posted by kumarrana on Sat, 05 Feb 2022 04:09:26 +0100
Hands on learning VGG16
VGG paper
<Very Deep Convolutional Networks for Large-Scale Image Recognition> Thesis address: https://arxiv.org/abs/1409.1556
Network using duplicate elements (VGG)
This paper briefly describes the VGG16 network by learning the harvest of VGG and the reproduction of VGG16.
I Gain from learning VGG
VGG network clearly points out and ...
Posted by zyntrax on Tue, 01 Feb 2022 11:43:24 +0100
[YOLO] YOLOv5 module analysis [first draft, which will be supplemented later...]
Relevant modules of YOLOv5 mainly exist in
common. In PY
Focus module
Function: down sampling
The function of Focus module is to slice the picture, which is similar to down sampling. First, change the picture to 320 × three hundred and twenty × 12, and then go through 3 × 3, the output channel 32 finally becomes 320 ...
Posted by gigabyt3r on Sun, 30 Jan 2022 21:12:43 +0100
Pytorch constructs convolutional neural network to classify MNIST data sets
For an input picture, the picture is a grid image, that is, the picture is divided into one grid, and each grid represents one pixel. For patch (picture block), we traverse the picture from top to bottom and from left to right according to the size of the block, and then convolute each image block.
How to convolute: (1) For the convolution of ...
Posted by BKPARTIES on Fri, 28 Jan 2022 15:37:23 +0100
[YOLOv5] SPP and SPPF modules and add ASPP module
Also known as, sort out your unreliable learning records.
YOLOv5 profile
YOLOv5 is built through yaml configuration file. First, it is in common Build a class with the same name in the PY file, and then read the corresponding operation from the configuration file. The class of the operation will be instantiated. The whole network structur ...
Posted by xgab on Wed, 19 Jan 2022 16:25:25 +0100
Convolution neural network is used to do facial expression recognition such as smiling face and non smiling face
1, Convolution neural network is used to do facial expression recognition such as smiling face and non smiling face
1.1 research background
Facial Expression Recognition
In daily work and life, people's emotional expression mainly includes: language, voice, physical behavior (such as gestures), facial expression and so on. Among these behavi ...
Posted by dan_t on Thu, 13 Jan 2022 13:02:50 +0100