(pytorch) how to train your dataset with yolov3 (pro test is effective)
In view of the failure of many tutorials on training my data sets with yolov3 algorithm on the network, I decided to write one myself. Train in the latest version of pytorch.
First, we should prepare our own data sets (that is, pictures), and then use our annotation tools to annotate them
1. Labeling tool (labelimg)
Labelimg is an open sourc ...
Added by chmpdog on Thu, 16 Dec 2021 20:49:28 +0200
How to export preprocessed image data for model reasoning from Deepstream Infer Plugin and use TensorRT for reasoning test
During the process of integrating models into Deepstream Infer Plugin, there may be some problems. One of the problems that puzzles people is that after a model is integrated into Deepstream Infer Plugin, the accuracy of model reasoning decreases, which is worse than that of directly using python or C + + to call the original model or using Ten ...
Added by joejoejoe on Thu, 16 Dec 2021 14:00:53 +0200
PyTorch deep learning practice notes - 03 gradient descent algorithm
Learning video source: link.
Course summary
Question: how to find the optimal value of weight As shown in the following figure, assuming that the initial value of W is the position of the red dot, how can we update w to approach the minimum value of the loss function The update algorithm is: Algorithm explanation: when the partial derivativ ...
Added by Cheeky Chino on Thu, 16 Dec 2021 12:08:34 +0200
Twenty thousand words long text takes you to do in-depth learning with pytorch!!!
Deep learning
Basic knowledge and various network structures
preface
It is very important to learn a good framework for in-depth learning. Now the mainstream is pytoch and tf. Let's learn pytoch together today
! [insert picture description here]( https://img-blog.csdnimg.cn/25238d12cb8641b8bc38171559ab41e9.jpg#pic_center)
1, Basi ...
Added by jrschwartz on Thu, 16 Dec 2021 09:11:43 +0200
TensorFlow2 function -- TF data. Dataset. padded_ batch
Category: General contents of TensorFlow2 function in simple terms
Function:
padded_batch(batch_size, padded_shapes=None, padding_values=None, drop_remainder=False,name=None)
This function can merge the continuous elements of the dataset into the padded batch. Merge multiple consecutive elements of the input dataset into a single element. ...
Added by MBK on Wed, 15 Dec 2021 18:38:45 +0200
Introduction to pytorch
Tensor
detach()
This is used when you want to freeze some parameters in the network model and do not participate in training. And it will return a new tensor.
y = x.detach()
In this case, y and X share the same memory, that is, one will change and the other will change. At this point, X can still take its derivative normally. So x = x.deta ...
Added by dreamwest on Wed, 15 Dec 2021 00:47:02 +0200
Implementation of Markov chain Monte Carlo MCMC model in R language
Original link: http://tecdat.cn/?p=2687Original source: Tuo end data tribal official accountWhat is MCMC and when to use it?MCMC is just an algorithm for sampling from distribution.This is just one of many algorithms. This term stands for "Markov chain Monte Carlo" because it is a "Monte Carlo" (i.e. random) method using &qu ...
Added by shan169 on Tue, 14 Dec 2021 11:37:14 +0200
Advanced actual combat of propeller AI: industrial meter reading (record)
Preparation stage
Step 1: create a Notebook model task
step1: enter the BML home page and click use now
🔗: https://ai.baidu.com/bml/
Step 2: click the Notebook to create a "general task"
step3: fill in task information
Step 2: download the task operation template
Download link: https://aistudio.baidu.com/aistudio/datas ...
Added by vtroubled on Tue, 14 Dec 2021 00:07:58 +0200
Layers and models in Paddle network architecture
Introduction: This is Models and layers in Paddle Learning notes. For the construction and operation of the layer in the pad, the preliminary test and related learning are carried out. Key words: Layer, cushion
Â
§ 01 model and layer
  model is one of the important concepts in deep learning. The core function o ...
Added by MasterHernan on Sun, 12 Dec 2021 14:37:16 +0200
Detailed explanation of masked self encoder MAE and implementation of pytoch code
Supervised learning is a traditional method of training machine learning model. During training, every observed data needs to be labeled. What if we had a way to train machine learning models without collecting labels? What if we extract tags from the same data collected? This type of learning algorithm is called self supervised learning. This ...
Added by andy2006 on Sun, 12 Dec 2021 05:22:03 +0200