Reproduction of graph regulated robust BLS (grbls)

The original paper is: "Pattern Classification with Corrupted Labeling via Robust Broad Learning System" The idea of GRBLS: The aforementioned BLS models are based on the mean square error (MSE) criterion to fit the approximation errors [23]. In fact, MSE aims to measure the sum of quadratic loss of data, and the approximation re ...

Posted by toysrfive on Sun, 30 Jan 2022 21:36:36 +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

Speech feature signal classification -- BP neural network -- MATLAB implementation

Speech feature recognition is an important aspect in the field of speech recognition, which is generally solved by the principle of pattern matching. The operation process of speech recognition is: Firstly, the speech to be recognized is transformed into an electrical signal and then input into the recognition system. After preprocessing, the ...

Posted by riginosz on Sun, 30 Jan 2022 20:53:01 +0100

Run yolov5 on CPU (detailed steps + suitable for getting started)

catalogue 1, Create a new environment 2, Import Python Library 3, New project 4, Testing 5, Prepare dataset 6, Modify profile 7, Training 8, Example test 9, Concluding remarks By default, Anaconda and pycham are installed and everyone knows the basic operation. 1, Create a new environment Open the cmd window, enter conda create -n ...

Posted by jcbones on Sun, 30 Jan 2022 13:33:19 +0100

[image classification] actual combat -- using DenseNet to recognize bald head (pytorch)

catalogue abstract Import libraries used by the project Set global parameters Image preprocessing Read data Set model Set up training and validation test Complete code abstract I have written a lot about the actual combat of models in the previous article. This is the last one of the actual combat. I didn't add visualization or deco ...

Posted by MasK on Sat, 29 Jan 2022 09:32:24 +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

PyTorch deep learning practice introduction note 9 exercise - Multi classification using kaggle's Otto data set

In the article Introduction to PyTorch deep learning practice notes 9-SoftMax classifier Mr. Liu gave an after-school exercise and downloaded kaggle's Otto dataset Do more classification. 0 Overview Let's take a look at the background of the official website. The Otto Group is one of the world's biggest e-commerce companies, with subsidiar ...

Posted by saint4 on Fri, 28 Jan 2022 06:24:41 +0100

Detailed explanation of neural network calculation using GPU

Pytorch learning notes (6): a simple LeNet network model using GPU It also mentioned how to realize the operation on GPU. Although it is not detailed, it is also enough. Summary: (if you are familiar with the summary knowledge, the following detailed explanation can be omitted) Default CPU for calculation.Variables or models on CPU cann ...

Posted by virken on Fri, 28 Jan 2022 04:58:12 +0100

Wu Enda's in-depth study notes - Lesson 1, week 4

Content overview The main content of this course is to synthesize the previous content, so as to realize a neural network. In the homework part, the first homework is helper function. After the first one is completed, the second one will push the boat with the current. Pay attention to the selection of parameters. Relevant exercises can b ...

Posted by darthbutternutz on Thu, 27 Jan 2022 23:26:23 +0100

TensorFlow----fashion_ Construction of neural network for MNIST data set

preface Study Xiaobai deeply. I hope you guys will forgive me if you make mistakes. 1, Data set loading and data set preprocessing The data set can be downloaded directly from the Internet. Here, the data set is divided into training set and test set, but more often, we will be divided into training set, cross validation set and ...

Posted by Seamless on Wed, 26 Jan 2022 22:30:14 +0100