YOLOv5 input Mosaic data enhancement | CSDN creative punch in

Novice beginners hope to take notes to record what they have learned. They also hope to help those who are also beginners. They also hope that the big guys can help correct mistakes ~ infringement legislation and deletion. catalogue 1, Principle analysis 2, Code analysis 1. Main part - load_mosaic 2,load_image function 3,random_perspectiv ...

Added by fahim_junoon on Thu, 10 Feb 2022 14:50:32 +0200

Note | statistical learning method: Decision Tree

Basic concepts of decision tree Decision tree is a tree. The leaf node corresponds to the decision result, and each other node corresponds to an attribute test;The sample set contained in each node is divided into sub nodes according to the results of attribute test;The root node contains the complete set of samples, and the path from the roo ...

Added by catlover on Thu, 10 Feb 2022 12:46:58 +0200

[Tensorflow] through Tensorflow 2 0 training neural network model

In the neural network optimization algorithm, the most commonly used method is the back propagation algorithm, and its work flow is as follows: As shown in the figure, the back propagation algorithm implements an iterative process. At the beginning of each iteration, a part of training data is selected, which is called a batch. Then, the ...

Added by neclord81 on Thu, 10 Feb 2022 12:32:46 +0200

[teach you by hand] build neural network (classification of 3D images scanned by CT)

Feather low is a 3D scan based image that I want to share with you today. The article will divide and explain the whole code. After reading it completely, I believe you will gain something. Welcome to "Yufeng codeword" catalogue 1. Project introduction 2. API preparation 3. Data set preparation 3.1 downloading data 3.2 data p ...

Added by danoli on Thu, 10 Feb 2022 10:27:07 +0200

Detailed explanation and implementation of self encoder model (implemented by tensorflow2.x)

Learning latent variables using self encoder Because there are many redundancies in the high-dimensional input space, it can be compressed into some low-dimensional variables. The self encoder was first introduced by Geoffrey Hinton et al. In the 1980s. Similar to the technology used to reduce the input dimension in traditional machine lea ...

Added by tauchai83 on Thu, 10 Feb 2022 08:43:45 +0200

Random sampling consensus algorithm (RANSAC) theory introduction and program implementation

1. Introduction to Random sample consensus (RANSAC) theory Ordinary LS is conservative: how to achieve the best under the existing data. It is to consider from the perspective of minimizing the overall error and try not to offend anyone. RANSAC is a reformist: first, assume that the data has some characteristics (purpose), and appropriately g ...

Added by simpjd on Thu, 10 Feb 2022 04:00:52 +0200

Key point detection project code is open source!

Author: Yan Yongqiang, algorithm engineer, Datawhale memberIn this paper, through the self built gesture data set, we use YOLOv5s detection, then train squeezenet to predict the key points of the hand through the open source data set, and finally judge the specific gesture through the angle algorithm between the fingers and display it. The four ...

Added by devang23 on Wed, 09 Feb 2022 20:37:46 +0200

Attention is All You Need paper notes and pytorch code Notes

Self reference Li Mu read the paper and pytorch code I don't understand residual networkPosition-wiseLayer normEncoder attention Parameter setting ## dimension d_model = 512 # Dimensions of sub layers, embedding layers and outputs (an addition operation to make use of residual connection) d_inner_hid = 2048 # Dimension of Feed Forward(MLP) ...

Added by lyasian on Wed, 09 Feb 2022 17:29:29 +0200

Paper reading and detailed explanation of pytorch source code - image inpainting via generic multi column revolutionary neural networks paper

1. motivation 1. Aiming at the problem of how to extract the appropriate features of the image, this paper proposes a convolution branch of multiple branches, each branch adopts different receptive fields, and decomposes the image into different receptive fields 2. Aiming at how to find similar patch es for missing regions, this paper propose ...

Added by driverdave on Wed, 09 Feb 2022 08:44:40 +0200

TF hub training image classifier

reference resources Training image classifier introduce The image classification model has millions of parameters. Training from scratch requires a lot of labeled training data and a lot of computing power. Transfer learning is a skill that greatly simplifies the process by adopting a model that has been trained on related tasks and reusi ...

Added by g-force2k2 on Wed, 09 Feb 2022 04:11:09 +0200