[learning notes] polynomial logistic regression with numpy
Polynomial logistic regression is to add high-order terms as features on the basis of logistic regression to realize the extraction of high-dimensional features
Model construction
Polynomial logistic regression model is composed of three sub models:
(1) Add polynomial feature
(2) Standardization
(3) Logistic regression
Add polynomial feature
Mu ...
Added by kanikilu on Thu, 20 Jan 2022 02:15:55 +0200
Application example of PCA dimensionality reduction algorithm -- kaggle handwritten numeral recognition
preface
In the previous blog post, we learned Dimension reduction algorithm PCA , and Parameters of PCA . This article is based on the premise of having a certain foundation for PCA. This paper mainly introduces the application of PCA algorithm in practice. Including the selection of PCA parameters, the use of PCA in training set and test ...
Added by racing_fire on Thu, 20 Jan 2022 00:55:16 +0200
3d machine learning open3d learning record -- point cloud 2
preface
Follow the previous section Point cloud 1 Data address of this section: link: https://pan.baidu.com/s/1O4s8tFOvExhuKMl2OCv4Kg Extraction code: 82u1
1. Point cloud clipping
Code first
import open3d as o3d
pcd=o3d.io.read_point_cloud("./test_data/Crop/fragment.ply")
val=o3d.visualization.read_selection_polygon_volume("./test_data ...
Added by project168 on Thu, 20 Jan 2022 00:29:55 +0200
Machine learning Note 6: integrated learning at the bottom of Python
preface
In the supervised learning algorithm of machine learning, our goal is to learn a stable model with good performance in all aspects, but the actual situation is often not so ideal. Sometimes we can only get multiple preferred models (weak supervised model, which performs better in some aspects). Three cobblers make Zhuge Liang. Ensemble ...
Added by simmsy on Wed, 19 Jan 2022 19:45:47 +0200
Five common methods for visualization and processing of data outliers in "Python data processing foundation"
Content introduction
Abnormal data are often encountered in daily data analysis, that is, data beyond a specific area or range is usually defined as abnormal or "noise", also known as outliers.
This paper introduces the visualization and processing routine of data outliers in daily work.
Distinguish true and false exceptions
J ...
Added by ben2.0 on Wed, 19 Jan 2022 14:40:04 +0200
New features of BigQuery ML: unsupervised anomaly detection of time series and non time series data
When it comes to anomaly detection, the main challenge is that it is difficult to define anomalies. For example, how can we define and predict abnormal network intrusion, system defects and security fraud? If known exception data has been marked, we can choose from the various types of supervised machine learning models (see the link below fo ...
Added by fizix on Wed, 19 Jan 2022 06:11:15 +0200
The time series tool library learns the Darts module - the concept and use of multiple time series, pre training models and covariates
1. Experimental purpose
This notebook is used for the following purposes:
Training a single model on multiple time seriesThe pre training model is used to obtain the prediction of any time series not seen during trainingTraining and using models using covariates
2. Guide library
# fix python path if working locally
from utils import fix_pyt ...
Added by DJH on Wed, 19 Jan 2022 03:33:51 +0200
Implementation of skip gram model
Probabilistic representation of CBOW model:
P(A): probability of occurrence of A.
P(A,B): the probability of simultaneous occurrence of event A and event B, which is called joint probability.
P(A|B): the probability of event A after giving the information of event B, which is called A posteriori probability.
CBOW model: the probability of o ...
Added by Alien on Tue, 18 Jan 2022 21:17:33 +0200
Transfer learning zz
I Overview of transfer learningTransfer learning refers to applying a network that completes learning tasks in a certain field to a new field for learning tasks.Implementation of transfer learning based on convolution networkFor the trained network model, the first few layers of the network model usually learn general features. With the deepeni ...
Added by shalinik on Tue, 18 Jan 2022 03:20:59 +0200
Summary of the most complete Python machine learning and deep learning library in Station C (containing a large number of examples, recommended Collection)
preface
At present, with the popularity of artificial intelligence, it has attracted the attention of many industries to artificial intelligence. At the same time, it has also ushered in waves of artificial intelligence learning upsurge. Although the principles behind artificial intelligence can not be introduced in detail in a short artic ...
Added by nologin666 on Mon, 17 Jan 2022 20:41:00 +0200