Biomacromolecule platform

2021SC@SDUSC 0. Preface This blog post is mainly about the self attention mechanism of deep learning, qkv part and gradient in deep learning 1. Self attention mechanism of deep learning 1.1 basic concepts of self attention mechanism For the self attention mechanism, Q, K and V, that is, query, key and value, all come from the same inpu ...

Posted by loudrake on Wed, 13 Oct 2021 22:13:57 +0200

Chapter VI fundamentals of visual processing

Chapter VI fundamentals of visual processing 6.1 introduction to convolutional neural network          The convolution neural network is composed of one or more convolution layers and the top fully connected layer (corresponding to the classical neural network), as well as the correlation weight and Poo ...

Posted by leonel.machava on Tue, 12 Oct 2021 22:21:57 +0200

TD3 code implementation

TD3 code implementation Code and explanation 0. Operating environment Equipment / packageeditionpython3.7.11Graphics cardGTX 1050CUDA10.2cudnn7.6.5cudatoolkit10.0.130tensorflow-gpu2.2.0tensorlayer2.2.3tensorflow-probability0.9.0 1. Package introduction and parameter setting import argparse import os import random import time i ...

Posted by poppy on Wed, 06 Oct 2021 00:29:52 +0200

Deep learning series notes 06 modern convolutional neural network

In the last chapter, we introduced the basic principle of convolutional neural network. In this chapter, we will take you to understand the structure of modern convolutional neural network. Many studies of modern convolutional neural network are based on this chapter. Although the concept of deep neural networks is very simple - stackin ...

Posted by wayz1229 on Tue, 05 Oct 2021 21:43:20 +0200

[pytoch series-27]: neural network foundation - multi input neuron to realize house price prediction

Author home page( Silicon based workshop of slow fire rock sugar): Slow fire rock sugar (Wang Wenbing) blog silicon based workshop of slow fire rock sugar _csdnblog Website of this article: https://blog.csdn.net/HiWangWenBing/article/details/120605366 catalogue Introduction deep learning model framework Chapter 1 business area analysis on ...

Posted by isaac_cm on Mon, 04 Oct 2021 22:33:55 +0200

Learning notes of HybridSN: Exploring 3-D – 2-DCNN Feature Hierarchy for Hyperspectral Image Classification

Basic information of the paper Title: HybridSN: Exploring 3-D – 2-DCNN Feature Hierarchy for Hyperspectral Image ClassificationAuthor: swalpa Kumar Roy, student member, IEEE, gopal Krishna, SHIV ram Dubey, member, IEEE, and bidyut B. Chaudhuri, life fellow, IEEETime: 2019Paper address: arXiv:1902.06701v3 [cs.CV] 3 Jul 2019code: https ...

Posted by legohead6 on Mon, 04 Oct 2021 05:08:49 +0200

Deep learning series notes 03 multilayer perceptron

1 perceptron The output of the perceptron can be set to 0 or 1; Or - 1, 1. By continuously introducing data points, this line can effectively segment all kinds of training data. It is worth noting that the convergence theorem is a concept in mathematical statistics. Points cannot be taken on the plane to separate such two data (red ...

Posted by mitjakac on Tue, 21 Sep 2021 02:35:00 +0200

Image convolution operation

image convolution 1 cross correlation operation Strictly speaking, convolution layer is a wrong name, because the operation it expresses is actually cross-correlation operation, not convolution operation. In the convolution layer, the input tensor and kernel tensor generate the output tensor through cross-correlation operation. First, let's ...

Posted by apulmca on Fri, 17 Sep 2021 22:05:11 +0200

Deep learning.22 practice of improving deep neural network

Three methods of initializing parameters First, download the data set and necessary files required for this practice. ( Download link )Put it in the project folder established below. Then open pycharm, create a new project called improved neural network, and then create a new python file called init.py. Three initialization methods are us ...

Posted by LanceT on Thu, 16 Sep 2021 19:23:55 +0200

[optimization prediction] BP neural network prediction optimized by tianniu Xu algorithm [matlab phase 1316]

1, Introduction to longicorn whisker search algorithm 1. Definition of longicorn whisker search algorithm Beetle antennae search bas, also known as beetle search, is an efficient intelligent optimization algorithm proposed in 2017. Similar to intelligent optimization algorithms such as genetic algorithm, particle swarm optimization algorithm a ...

Posted by wkrauss on Thu, 16 Sep 2021 05:11:56 +0200