yolov3 network structure

Reprinted from https://blog.csdn.net/dz4543/article/details/90049377 Detailed analysis of YOLOv3 network structure Based on keras yolov3, understand the principle and code details Thesis address: https://pjreddie.com/media/files/papers/YOLOv3.pdf yolov3 official website: https://pjreddie.com/darknet/yolo/ Keras version recommendation: https: ...

Added by nomanoma on Sun, 30 Jan 2022 15:19:11 +0200

Transformation of dimensions

view and reshape operations The functions and usage of the two are the same, but it is necessary to ensure that the overall size of the view remains unchanged, that is, numel () is consistent view operation will lose dimension information. Remember the storage order of data a = torch.rand(4,1,28,28) b = a.view(4,28*28) #Two dimens ...

Added by Scifa on Sat, 29 Jan 2022 20:20:20 +0200

Introduction to PyTorch | DATSETS & DATALOADERS

Python wechat ordering applet course video https://edu.csdn.net/course/detail/36074 Python actual combat quantitative transaction financial management system https://edu.csdn.net/course/detail/35475 The code used to process data samples may become messy and difficult to maintain; Ideally, we want to decouple the dataset code from the model t ...

Added by bhavin12300 on Sat, 29 Jan 2022 05:27:48 +0200

Introduction to machine learning for programmers - Introduction to pytorch and matrix calculation

Artificial intelligence learning is inseparable from the verification of practice. It is recommended that you can learn more in Flyai AI competition service platform Take part in more training and competitions to improve your ability. FlyAI is a one-stop service platform that provides AI developers with data competition and supports GPU offli ...

Added by Residue on Fri, 28 Jan 2022 05:38:01 +0200

On the strategy of text generation or text translation decoding

catalogue 1, Basic process of text generation and Translation Training and decoding of translation models Training process Decoding process Training and decoding of generation class model (GPT Series) Training process Decoding process 2, Decoding strategy 1. Greedy search 2,beam_search cluster search 3. Random sampling 4. Top-K Samp ...

Added by phencesgirl on Thu, 27 Jan 2022 00:23:34 +0200

Basic usage of pytoch (data loading, type conversion)

This blog post will be released in Nuggets community first! preface Through the previous introductions, we probably know some basic concepts of tensor of our pytorch, as well as some details of our gradient and tensor replication. Tensor is very similar to numpy to a great extent. In some cases, we can even use tensor directly for calcul ...

Added by phonydream on Wed, 26 Jan 2022 20:33:43 +0200

A renaissance CNN network VGG is implemented on the cirfa10 data set

A renaissance CNN network VGG is implemented on the cirfa10 data set 🙋‍♂️ Classmate Zhang, zhangruiyuan@zju.edu.cn Please contact me if you have any questions~ 0. Background introduction I'm doomed not to sleep well tonight. I want to build a CNN network by myself to deepen my knowledge. When I studied in depth some time ago, ...

Added by jswinkelman on Wed, 26 Jan 2022 06:04:49 +0200

[Pytorch] Network optimization exercises

Network optimization exercises 0. Overview Among them, Dropout and Weight Decay are two methods that have been practiced in future experiments (fitting thematic). In this experiment, we will practice some other important network optimization methods. These include: (1) Small batch gradient drop (this section will discuss the setup of ba ...

Added by koldstar on Tue, 25 Jan 2022 07:25:54 +0200

A small record of neural network learning 67 -- a detailed explanation of the reproduction of Vision Transformer (VIT) model in pytoch

Study Preface Visual Transformer is very hot recently. I'll learn from VIT first. What is Vision Transformer (VIT) Vision Transformer is the visual version of transformer. Transformer has basically become the standard configuration of natural language processing, but its application in vision is still limited. Vision Transformer breaks ...

Added by asukla on Mon, 24 Jan 2022 19:56:06 +0200

Figure neural network task_04

This paper mainly refers to DataWhale graph neural network team learning The statistics of the three data sets are as follows: data setCoraCiteSeerPubMedNumber of nodes2708332719717Number of sides5278455244324Number of training nodes14012060Number of verification nodes500500500Number of test nodes100010001000Number of node categories763Featur ...

Added by avickers on Sun, 23 Jan 2022 23:10:21 +0200