torch.nn neural network -- loss function and back propagation + optimizer

7. Loss function loss Loss usually refers to the difference between the predicted value and the real value of the output of the neural network, which is used to: ① Calculate the gap between the actual output and the target ② Provide some basis for us to update the output (back propagation) For example: the specific definitions of each functio ...

Added by haaglin on Thu, 09 Dec 2021 07:25:02 +0200

2021SC@SDUSC Application and practice of software engineering in school of software, Shandong University -- yoov5 code analysis torch_utils.py

2021SC@SDUSC preface This article analyzes torch in yolov5 code_ Utils.py file is mainly some encapsulated tool classes. torch_distributed_zero_frist function @contextmanager def torch_distributed_zero_first(local_rank: int): """ Decorator to make all processes in distributed training wait for each local_master to do something. ...

Added by kkibak on Wed, 08 Dec 2021 05:32:00 +0200

[PyTorch] build and train a neural network model from scratch (image classification, CNN)

0. Preface Some powerful models have been used before, such as VGG16 in the field of image classification, YoloV5 in the field of target detection, Yolact in the field of instance segmentation, etc. But only after the environment is configured for training, the interface of the source code can be modified slightly to meet their own needs. ...

Added by Rianna on Sun, 05 Dec 2021 00:33:36 +0200

Detailed explanation of os module of python

os module details When looking at the great gods' code, you can often see the figure of the os module, and then want to make a summary for later viewing The following figure refers to CSDN blogger's "beauty of data analysis and statistics". Thank you very much for the picture Let's introduce the usage of each one in detail: (1) os.g ...

Added by ex247 on Fri, 26 Nov 2021 18:38:29 +0200

Logistic regression with neural network thinking

** 1 - Packages (import package, load dataset) 1.1 import package The Python packages used include: ◎ numpy is a basic package for scientific computing using Python. ◎ h5py Python provides an interface for reading HDF5 binary data format files. This training and test picture set is stored in HDF5. ◎ matplotlib is a famous drawing library in ...

Added by jodyanne on Sun, 21 Nov 2021 08:16:58 +0200

[emotion recognition] speech emotion recognition based on PNN probabilistic neural network [Matlab 544]

1, PNN probabilistic neural network speech emotion recognition 1 speech emotion recognition system In the speech emotion recognition system, the recorded corpus contains five different emotions of five actors, namely happiness, fear, sadness, anger and neutrality. At the same time, the corpus is divided into training set and test set. The desi ...

Added by teebo on Fri, 19 Nov 2021 12:45:48 +0200

[NLP] Intelligent Question Answering System

1. Introduction to Q & a system Q & a system is usually divided into: Task robotChat robotSolution robot (customer service robot) The three are designed for different application scenarios: Task based robots are mainly used to complete some specific tasks of users, such as buying air tickets, phone recharge or weather consultati ...

Added by Muses on Thu, 18 Nov 2021 15:03:00 +0200

SSD pytorch model trains its own data set

1. Download SSD pytorch code SSD pytorch code link: https://github.com/amdegroot/ssd.pytorch git clone https://github.com/amdegroot/ssd.pytorch Run the code and download it locally (if the download is too slow, you can upload it to the code cloud, and then git clone the code cloud address) 2. Prepare data sets Students without datasets ca ...

Added by jagguy on Thu, 18 Nov 2021 05:27:27 +0200

Introduction to deep learning series 20: LSTM recurrent neural network to solve the problem of international air passenger prediction

Hello, my technician Howzit, this is the 20th part of the introduction series of in-depth learning. Welcome to communicate with us! Introduction to deep learning series 1: overview of multi-layer perceptron Introduction to deep learning series 2: build your first neural network with TensorFlow Introduction to deep learning series 3: performanc ...

Added by LTJason on Wed, 17 Nov 2021 05:13:51 +0200

Teach you how to build a classification neural network with Keras

Abstract: This paper mainly realizes a case of classification learning through Keras, and introduces MNIST handwriting recognition data set in detail. This article is shared from Huawei cloud community< [Python artificial intelligence] XVII. Case study of Keras building classification neural network and MNIST digital image >, by eastmo ...

Added by Leppy on Fri, 12 Nov 2021 09:54:12 +0200