SimAM: attention mechanism without parameters
abstract
In this paper, we propose a simple but very effective attention module for convolutional neural networks. Compared with the existing channel Focus module and spatial focus module, our module does not need to add parameters to the original network, but infers the 3-D focus weight of the fe ...
Word2vec is a model proposed by Google in 2013, which trains word vectors from large-scale corpus. It is applied in many scenes, such as information extraction, similarity calculation and so on. Starting from word2vec, embedding has become popular in various fields, so word2vec is an appropriate opening. This paper hopes to give a more comprehe ...
Posted by Gordicron on Wed, 25 May 2022 17:17:02 +0300
MNIST libtorch practical exercise
Ready to work
First download the MNIST database, http://yann.lecun.com/exdb/mnist/
After downloading, do not decompress it with software such as winrar. For example, t10k-images-idx3-ubyte is decompressed into t10k-images.idx3-ubyte. It is best to decompress it with tar in Linux environment.
Suppose you unzip t ...
Posted by chrys on Wed, 25 May 2022 15:51:55 +0300
Running PyTorch code on GPU - neural network programming guide
In this episode, we will learn how to use GPU and PyTorch. We will see how to use the general methods of GPU, and we will see how to apply these general techniques to train our neural networks.
Deep learning using GPU
If you haven't seen the episode about why deep learning and neur ...
Regression Prediction of Vehicle Efficiency Using Fully Connected Neural Networks
keyword: fully connected neural network, tensorflow, regression
illustrate
It mainly uses the fully connected neural network to predict the regression problem of the car's performance index MPG.
python packages include: os, pandas, tensorflow, sklearn, matplotlib
...
Posted by kevinc on Sun, 22 May 2022 19:00:03 +0300
TVM is an open source deep learning compiler, which can be applied to all kinds of CPUs, GPUs and other special accelerators. Its goal is to enable us to optimize and run our own model on any hardware. Unlike the deep learning framework, which focuses on model productivity, TVM pays more attention to the performance and efficiency of the model ...
Posted by dkruythoff on Sun, 22 May 2022 09:15:51 +0300
Before learning this course, I heard the name of YOLO. During the epidemic, an up master trained the detection of pedestrian masks through yolo and it was a great success. Without further ado, let's start learning.
Basic Concepts in Object Detection
Before starting to learn YOLO, first learn some basic concepts of target detection. After all, Y ...
Posted by Pro Ninja on Fri, 20 May 2022 08:48:32 +0300
Please check the previous articles for the principle.
1. Data source
  SH600519.csv is the daily k-line data of sh600519 Guizhou Maotai downloaded by tushare module. In this example, only its C-column data is used (as shown in the figure):   use the opening price for 60 consecutive days to predict the opening price on ...
Posted by phpnewbie25 on Thu, 19 May 2022 23:01:07 +0300
From PyTorch 1.4 tutorial
Outline
Tensor
torch.autograd.backward
If the result node is scalar
If the result node is a vector
[PyTorch] Note 02: Autograd auto derivation
In PyTorch, the core of all neural networks is autograd package
1 Tensor
torch.Tensor is the core class of this autograd
A Tensor tensor usually records the following ...
Posted by rusbb on Thu, 19 May 2022 21:17:09 +0300