Pytorch torchserve production environment model deployment

We trained a target detection model, wanted to deploy it in the production environment, checked a lot of data, and finally chose TorchServe to deploy it. TorchServe was jointly developed by AWS and Facebook, so I didn't think much about it. There should be nothing wrong with choosing big factories. I stepped on a lot of holes in the process of ...

Added by TobyRT on Fri, 31 Dec 2021 13:02:39 +0200

SAR Target Classification Based on full convolution network

SAR Target Classification Based on full convolution network 1. MSTAR dataset expansion In the original SAR image (128) × 128) random clipping 88 × 88 slices, each slice can contain the target area, and the number of samples can reach (128-88 + 1) after random sampling × (128-88 + 1) = 1681 times, each SAR image of each c ...

Added by salih0vicX on Mon, 20 Dec 2021 07:29:15 +0200

Target detection pit entry Guide 4: GoogLeNet neural network

The three neural networks described above are "series", just the continuous stacking of convolution layers, and the structure is relatively simple. The next two blogs will introduce the "parallel" structure in GoogLeNet and ResNet, which are also the last two neural networks to be introduced before officially entering the ta ...

Added by AKA Panama Jack on Sun, 19 Dec 2021 07:25:00 +0200

(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

Fast r-cnn model was trained using NWPU VHR-10 dataset

  use the fast r-cnn algorithm to realize target detection on NWPU VHR-10 data set.   detailed steps of target detection on VOC2007 dataset using fast r-cnn algorithm → Windows10 + fast-rcnn-tensorflow-python 3-master + voc2007 dataset. 1, Required file download link Fast r-cnn source code and operation steps Github link & ...

Added by l4nc3r on Tue, 07 Dec 2021 23:30:09 +0200

OpenCV39: feature matching + homography matrix lookup object

target In this chapter, you will learn Feature matching and finding (homography matrix) homology will be confused from Calib3D module to find known objects in complex images. Basics In the previous content, a query image was used, in which some feature points were found, another train image was taken, the features were also found in the ima ...

Added by hjunw on Fri, 03 Dec 2021 16:14:33 +0200

100 cases of in-depth learning | day 53: train your own data set with YOLOv5 (super detailed full version)

Hello, I'm classmate K! Let's move on to the last article 100 deep learning cases | day 51 - target detection algorithm (YOLOv5) (Introduction) After configuring the environment required by YOLOv5, today we try to train our data with YOLOv5. (remember to run through the introductory chapter before starting this tutorial to ensure that other en ...

Added by cauri on Thu, 04 Nov 2021 05:10:50 +0200

Rethinking on SSD and fastercnn

Written in front: This article is some new thoughts I got after Rereading SSD (SSD: Single Shot MultiBox Detector) and fastercnn (fast r-cnn: directions real time object detection with region proposal networks), and these understandings are deeper for me. Thanks for the basic explanation from Bubbliiiing, University of science and technol ...

Added by tefuzz on Fri, 29 Oct 2021 17:14:24 +0300

Train yolov4 tiny on Ubuntu 20.04

Train yolov4 tiny on Ubuntu 20.04 1, Data download 1.yolov4 Official download: https://github.com/AlexeyAB/darknet Network disk download link: https://pan.baidu.com/s/1HYiCANZZ4NPYFvMJ-cenFA Extraction code: 2rh0 2.yolov4-tiny.weights Official download: https://github.com/AlexeyAB/darknet/releases/download/darknet_yolo_v4_pre/yolov4-tiny.w ...

Added by soulroll on Thu, 28 Oct 2021 11:03:31 +0300

RPN architecture and its PyTorch implementation

introduction because RPN architecture RPN Generation method of AnchorHow to select anchor as proposalsFor loss calculation, you need to select positive and negative samples from anchor before calculating loss In fact, RPN itself can be used as the Head of target detection Anchor generation So how did proposal come into being? It is ...

Added by pedroz on Mon, 25 Oct 2021 15:52:04 +0300