Machine learning (algorithm) -- linear regression
Introduction to linear regression
Linear regression application scenario
House price forecast
Sales quota forecast
Loan line forecast
What is linear regression
Definition and formula
Linear regression is an analytical method that uses regression equation (function) to model the relationship between one or more independent variables (eige ...
Posted by sumfight on Mon, 20 Dec 2021 17:30:56 +0100
Dissimilarity measurement of Python machine learning
1 Introduction
Similarity and dissimilarity are important concepts in machine learning, because they are adopted by many data mining technologies, such as common clustering, nearest neighbor classification and anomaly detection. In many cases, once we calculate the similarity or dissimilarity of eigenvectors, we no longer need the original dat ...
Posted by feeta on Mon, 20 Dec 2021 03:15:56 +0100
"From bronze to King" Python machine learning engineer's grid search, clustering 05
Once a day, never tired of learning
Grid search
The way to obtain an optimal super parameter can draw the verification curve, but the verification curve can only obtain one optimal super parameter at a time. If there are many permutations and combinations of multiple hyperparameters, grid search can be used to find the optimal hyperpara ...
Posted by ranbla on Sun, 19 Dec 2021 23:27:59 +0100
Hands on learning data analysis Task05
reference material: https://gitee.com/datawhalechina/hands-on-data-analysis
Chapter 3 model building and evaluation - Modeling
After learning the knowledge points in the previous two chapters, I can process the data itself, such as adding, deleting, checking and supplementing the data itself, and do the necessary cleaning work. Then we'll sta ...
Posted by swallace on Sun, 19 Dec 2021 23:12:57 +0100
News classification based on Naive Bayes
Automatic text classification technology liberates human beings from tedious manual classification, makes the classification task more efficient, and lays the foundation for further data mining and analysis. For news, short news introduction is a high summary of news content. The research on short text classification has always been a researc ...
Posted by tmswenson on Sun, 19 Dec 2021 04:47:56 +0100
Statistical learning: model evaluation and validation -- K-fold cross validation and self-help method
1, K-fold cross validation If the given sample data is sufficient, a simple method for model selection is to randomly cut the data set into three parts, including training set, verification set and test set. The training set is used to train the model. Generally speaking, the amount of data is larger. The verification set is used to select the ...
Posted by phpnewbie112 on Sat, 18 Dec 2021 22:37:18 +0100
DAY6: VGG network structure analysis
1, VGG network
VGG model is the second place in the 2014 ILSVRC competition, and the first place is GoogLeNet . But the VGG model works in multiple Transfer learning The performance in the task is better than Google net. VGG is a network developed from Alexnet. VGG has 19 layers (16 + 3) and five convolutions. Each convolution is followed by ...
Posted by thekoopa on Sat, 18 Dec 2021 20:39:20 +0100
Decision tree based on machine learning
Decision tree is a basic classification and regression method
1, Basic concepts of decision tree
The nodes and directed edges of the decision tree are represented respectively:
An internal node represents a feature or attributeLeaf nodes represent a classification.A directed edge represents a partition rule
The directed edge of the decisio ...
Posted by boombanguk on Sat, 18 Dec 2021 18:10:27 +0100
Regularized logistic regression python implementation
machine learning
Chapter 1: Fundamentals of machine learning Chapter 2: linear regression Chapter 3: logical regression Chapter 4: BP neural network Chapter 5: convolutional neural network Chapter 6: cyclic neural network Chapter 7: decision tree and random forest Chapter 8: support vector machine Chapter 9: Hidden Markov Chapter 10: clusteri ...
Posted by mithu_sree on Sat, 18 Dec 2021 10:30:50 +0100
[crack identification] threshold crack + scratch detection [Matlab 467]
1, Introduction
1 threshold The simplest way to block an image is to set a threshold to binarize the image. How should we choose this threshold For the image with obvious boundary in the histogram of the image, we can easily find this threshold, but if the boundary of the histogram of the image is not obvious, it will become very difficult to ...
Posted by glowball on Fri, 17 Dec 2021 20:34:14 +0100