MMDetection——2. Quick start (Chinese official document II)

MMDetection——2. Quick start (translation) 1: Infer and train existing models and standard data sets MMDetection in In Model Zoo It provides hundreds of existing and existing detection models and supports multiple standard data sets, including Pascal, VOC, COCO, CityScapes, LVIS, etc. This note explains how to perform common tasks ...

Added by michaeru on Fri, 04 Mar 2022 01:11:02 +0200

DETR:End-to-End Object Detection with Transformers

Features: self attention layers, end-to-end set predictions, bipartite matching loss The DETR model has two important parts: 1) A set prediction loss that ensures a unique match between the real value and the predicted value. 2) An architecture that can predict (one-time) target sets and model their relationships. 3) Due to the addition of self ...

Added by hbradshaw on Fri, 04 Mar 2022 00:37:15 +0200

YOLOV5 trains its own data set

All codes and related articles in this article are only used for experience and technology exchange and sharing. It is prohibited to apply relevant technologies to improper ways. The risk of misuse of technology has nothing to do with me. This article is some records of my study. start Recently, we plan to do a target detection project again. ...

Added by focus310 on Thu, 03 Mar 2022 23:20:55 +0200

Interpretability study - XGNN

Paper core target Here, the author aims at the graph classification problem of GNN. Study the model level interpretation method. The specific way is to train a graph generator use f ( . ) f(.) ...

Added by JoeyT2007 on Thu, 03 Mar 2022 21:14:30 +0200

[paper reading notes 64] a unified generic framework for variant ner subtasks

1. Basic information subjectAuthor and unitsourceparticular yearA Unified Generative Framework for Various NER SubtasksQiu Xipeng group, Fudan UniversityACL2021 13 Citations, 70 References Paper link: https://arxiv.org/pdf/2106.01223.pdf Thesis Code: https://github.com/yhcc/BARTNER 2. Key points Research topicsProblem backgroundCore method ...

Added by kasitzboym on Thu, 03 Mar 2022 18:31:42 +0200

Introduction to C + + Basics

Introduction to C + + Basics 1. Initial knowledge of C + + 1.1 the first C + + program Writing a C + + program is divided into four steps Create projectcreate a fileWrite codeRun program 1.1.1 create project Visual Studio is the main tool we use to write C + + programs. Let's open it first 1.1.2 creating files Right click the source ...

Added by Chrisj on Thu, 03 Mar 2022 16:13:00 +0200

Understand LSTM in one article

1, Write in front This article introduces an improved version of RNN - LSTM on the basis of my other blog post "understanding RNN in one article" 2, LSTM In the practical application of RNN, we find that when the number of time steps is large or the time steps are small, the gradient of cyclic neural network is prone to attenuation ...

Added by sanstenarios on Thu, 03 Mar 2022 16:10:46 +0200

Analysis of PointRCNN point cloud detection model

1. Foreword At present, the common methods of point cloud detection are 1. The point cloud is divided into voxels for detection. Typical models include VoxelNet, SECOND, etc; However, Dr. Shi, the author of this paper, proposed that this method will cause quantitative information loss. 2. Project the point cloud to the front view or aerial v ...

Added by Danno13 on Thu, 03 Mar 2022 06:36:16 +0200

[several data set sampling methods]

Pytorch Sampler When training neural network, if the amount of data is too large to put the data into the network for training at one time, it is necessary to read the data in batches. This problem involves how to read data from the data set. PyTorch framework provides Sampler base class and multiple subclasses to realize data sampling in ...

Added by lth2h on Wed, 02 Mar 2022 15:14:19 +0200

Construction of swin transformer target detection environment under Windows 10 system

preface I just got it in the pit. I just got it again. Step 1 of CV: start from environment construction! 1. Environmental preparation (1) Install Visual Studio You need to use C + + to install the compilation library, so you need to install Microsoft Visual Studio. The most common version is 2019. The latest 2022 version should also b ...

Added by zoooj on Wed, 02 Mar 2022 10:52:58 +0200