[PyTorch Basic Tutorial 3] Automatic guidance mechanism (learn not to hit me) (update ing)

Part I: Deep learning and machine learning 1. Machine learning tasks Review our steps in completing a machine learning task: (1) First of all, the data needs to be preprocessed. The important steps include the uniformity of data format and necessary data transformation, as well as the division of training set and test set. (2) Next, selec ...

Posted by geoldr on Fri, 15 Oct 2021 09:42:30 -0700

Chapter 02 PyTorch Basics

This picture and text is the learning notes of Datawhale team learning pytoch. The main contents include the concept of tensor (0-dimensional, 1-dimensional, 2-dimensional, 3-dimensional, 4-dimensional tensor, etc.), the principle of automatic derivation (understanding through dynamic graph), and the understanding of parallelism. Chapter 0 ...

Posted by Darklink on Fri, 15 Oct 2021 02:05:00 -0700

The first layer of the model! Detailed explanation of the differences between torch.nn.Embedding and torch.nn.Linear

1. General torch.nn.Embedding is used to turn a number into a vector of a specified dimension. For example, number 1 becomes a 128 dimensional vector and number 2 becomes another 128 dimensional vector. However, these 128 dimensional vectors are not immutable. These 128 dimensional vectors are the real input of the model (that is, the firs ...

Posted by HalfaBee on Fri, 15 Oct 2021 01:11:14 -0700

Section II of pytoch model reasoning and multi task general paradigm

1 course learning This lesson is mainly for the white AI course: Ptorch model reasoning and multi task general paradigm The second lesson in the course. 2 assignment topic Title Description Required questions: (1) from torchvision Loading in resnet18 Model structure, and load the pre trained model weight 'resnet18-5c106cde.pth' (In the ...

Posted by austrainer on Thu, 14 Oct 2021 11:02:05 -0700

Deep learning series notes 08 computer vision

7 single shot multi frame detection (SSD) The bounding box, anchor box, multi-scale target detection and data set for target detection are introduced respectively. Now we are ready to use this background knowledge to design a target detection model: single shot multibox detector (SSD). 7.1 model This model is mainly composed of basic net ...

Posted by zoozle on Wed, 13 Oct 2021 22:08:50 -0700

PyTorch learning notes 5.torchvision Library

1, Introduction tochvision mainly processes image data, including some commonly used data sets, models, conversion functions, etc. torchvision is independent of PyTorch and requires special installation. torchvision mainly includes the following three parts: torchvision.models: provide various classic network structures and pre trained m ...

Posted by justinede on Tue, 12 Oct 2021 01:21:30 -0700

PyTorch and dynamic learning rate application - with code

Stick to blogging and share your gains in study and work Make a note of yourselfRecord and summarize knowledge points to deepen understandingGive some help to people in need, step less on a pit and take more steps Try to arrange the layout in an appropriate way, with both graphics and text If you write wrong or don't understand, you can lea ...

Posted by kevingarnett2000 on Mon, 11 Oct 2021 14:59:32 -0700

Practical tutorial | preservation and migration of pytoch model

Practical tutorial | preservation and migration of pytoch model In this article, the author first introduces several typical scenarios of model reuse; Then it introduces how to view the relevant parameter information in the pytoch model; Then it introduces how to load the model, how to carry out additional training and transfer learning of the ...

Posted by prometheos on Fri, 08 Oct 2021 23:22:46 -0700

Classical convolution network

Tip: after the article is written, the directory can be generated automatically. Please refer to the help document on the right for how to generate it preface This paper mainly records some classical convolution network architectures and the corresponding pytorch code. Tip: the following is the main content of this article. 1, LeNet ...

Posted by olivarespablo on Wed, 06 Oct 2021 20:29:34 -0700

[pytoch series-25]: neural network foundation - nonlinear regression of multiple neurons with activation function

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/120600621 catalogue Introduction deep learning model framework Chapter 1 business area analysis on ...

Posted by sysgenmedia on Wed, 06 Oct 2021 14:32:30 -0700