Tensorflow code learning-4-1 cost function: quadratic, cross entropy, log likelihood

Cost function: quadratic, cross entropy, log likelihood (course: refining numbers into gold) quadratic cost function C = 1 2 n ...

Posted by w1ww on Mon, 27 Sep 2021 00:13:42 -0700

Triple loss using Pytorch

In this article, we will explore how to build a simple network model with triple loss. It is widely used in face verification, face recognition and signature verification. Before entering the code, let's learn what triple loss is and how to implement it in PyTorch. Triple loss Triple loss function is a widely used loss function at present. It ...

Posted by sam_rich on Sun, 26 Sep 2021 16:22:22 -0700

Fourth week assignment: convolutional neural network (Part2)

Modern neural network This week, I mainly learned several classic modern neural networks: AlexNet, VGG, NiN, geoglenet and ResNet. These networks can be regarded as a process of continuous refinement in the development of neural networks: Starting from the LeNet network, AlexNet is generated by changing the activation function and using DropOu ...

Posted by joey3002 on Sat, 25 Sep 2021 00:04:14 -0700

Parameter management of deep learning

         After selecting the architecture and setting the super parameters, we enter the training stage. Our goal is to find the parameter value that minimizes the loss function. After training, we need to use these parameters to make future predictions. Sometimes we need to extract parameters to reuse th ...

Posted by teongkia on Fri, 24 Sep 2021 06:35:37 -0700

[prediction model] optimize BP neural network based on differential evolution algorithm to realize data prediction matlab source code

1 Introduction to algorithm 1.1 introduction to the principle of BP neural network Neural network is the basis of deep learning. It is widely used in machine learning and deep learning, such as function approximation, pattern recognition, classification model, image classification, CTR prediction based on deep learning, data compression, data ...

Posted by jdwmk on Thu, 23 Sep 2021 08:31:22 -0700

TensorRT installation and use -- general model

         TensorRT is designed by Nvidia to accelerate the reasoning based on its own GPU training model. After we train the model, TensorRT can directly conduct one-to-one correspondence on the network layer of the model, so as to accelerate the reasoning deployment of larger models. Recently, TensorRT ha ...

Posted by adityamenon90 on Tue, 21 Sep 2021 11:05:18 -0700

[prediction model] optimize BP neural network based on longicorn whisker algorithm to realize data prediction matlab source code

1 Introduction to algorithm 1.1 principle of BP neural network algorithm affected by relevant indexes As shown in Figure 1, when training BP using MATLAB's newff function, it can be seen that most cases are three-layer neural networks (i.e. input layer, hidden layer and output layer). Here to help understand the principle of neural network: 1 ...

Posted by tzzoug on Sat, 18 Sep 2021 19:52:24 -0700

Brian2_ Impulse neural network_ Neuron learning record

Impulse neural network is called the third generation neural network, which has higher biological reliability. SNN has always occupied the core position in the research of brain like science in recent years. When the performance is similar, the chip based on pulse neural network has lower power consumption, better stability and robustness than ...

Posted by coverman on Thu, 16 Sep 2021 11:38:05 -0700

Improving BP network to realize data prediction based on Harris Eagle algorithm

Introduction of BP network prediction algorithm 1. Introduction to Artificial Neural Network Artificial Neural Network (ANN) is a computer system formed by several very simple processing units connected to each other in some way to mimic the structure and function of the human brain. It processes information by the dynamic response of its sta ...

Posted by Jim_Bo on Tue, 14 Sep 2021 09:13:02 -0700

Recognition of fashion MNIST data set by convolutional neural network (DenseNet) (pytoch version)

1. Preface 1.1 case introduction In this case, pytoch is used to build a DenseNet network structure for image classification of fashion MNIST dataset. The analysis of this problem can be divided into data preparation, model establishment, training with training set and testing the effect of model with test set. 1.2 environment configurat ...

Posted by OhLordy on Fri, 10 Sep 2021 01:45:07 -0700