kNN algorithm for handwritten number recognition (machine learning)

Tip: After the article is written, the catalog can be generated automatically, how to generate the help document to the right Article Directory Preface1. EXPERIMENTAL STEPSII. EXPERIMENTAL PROCESS 1. Collect data: provide text files2. Preparing data: converting images to test vectors3. Test the algorithm: Recognize handwritten numbers ...

Posted by huhn_m on Sat, 09 Oct 2021 10:30:21 -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

The world's largest sketch dataset: multi process & & multi thread data set generation practice

The previous article introduced the past and present of quickdraw: The largest hand drawn sketch data set in the universe - QuickDraw analysis, download, use, training and visualization (with complete code)_ A fan boy addicted to cycling - CSDN blog However, in the process of generation, the cpu utilization is very low, and it is difficu ...

Posted by kaumilpatel on Thu, 07 Oct 2021 17:09:20 -0700

Ptorch machine learning - for anchor box and prediction box in YOLO, generate candidate areas and label candidate areas in detail

Pytoch machine learning (IX) -- anchor box and prediction box in YOLO, generating candidate regions and labeling candidate regions in detail catalogue Pytoch machine learning (IX) -- anchor box, prediction box, generating candidate regions and labeling candidate regions in YOLO preface 1, Basic concepts 1. bounding box xyx ...

Posted by rdoylelmt on Wed, 06 Oct 2021 13:01:31 -0700

Deep learning_ DenseNet

ResNet has greatly changed the view of how to parameterize functions in deep networks. DenseNet is a logical extension of ResNet to some extent. Let's start with math. From ResNet to DenseNet Recall the Taylor expansion of an arbitrary function, which decomposes the function into higher and higher order terms. stay ...

Posted by Cliftron on Wed, 06 Oct 2021 05:48:25 -0700

3D reconstruction tool -- pclpy tutorial point cloud features

This tutorial is open source: GitHub Welcome, star 1, Normal estimation 1. Parameter description Since almost all classes in PCL inherit from the basic pcl::PCLBase class, the pcl::Feature class accepts input data in two different ways: A complete point cloud data set is forced through setinputcloud (pointcloudconstptr &) Any ...

Posted by jon23d on Tue, 05 Oct 2021 14:58:38 -0700

Histogram based on OpenCV4

Histogram based on OpenCV4 Image histogram is an important statistical feature of an image. It represents the statistical relationship between each gray level in a digital image and the frequency of the gray level (the number of gray levels). According to the definition of histogram, it can be expressed as: ...

Posted by coffeehead on Tue, 05 Oct 2021 13:32:21 -0700

A series of artificial intelligence experiments -- Python implementation of gradient test

In the actual process of building neural network, forward propagation is easy to realize and has high correctness; The implementation of back propagation is difficult, and there are often bug s. For items requiring high accuracy, gradient test is particularly important. Principle of gradient test The definition of derivative (gradient) in mat ...

Posted by msaspence on Tue, 05 Oct 2021 10:35:50 -0700

Chapter 3 news classification: multi classification problems

Reuters data set For this news data set, this is a multi classification problem Dataset characteristics: Text classification datasetContains 46 different topicsThere are at least 10 samples for each topic in the training setThe dataset is in Keras and can be directly transferred in Difference between multi classification problem and ...

Posted by novice_php on Mon, 04 Oct 2021 17:00:15 -0700

Regression and correlation model

linear regression model The univariate linear regression model uses a single feature to predict the response value, and the best fitted curve is obtained by minimizing the error between the predicted value and the real value. Multiple regression model uses multiple independent variables to estimate dependent variables, so as to explain and pr ...

Posted by sklein99 on Mon, 04 Oct 2021 13:51:20 -0700