Artificial intelligence machine learning support vector machine

1, Overview Support vector machine (SVM) is a kind of supervised learning algorithm, which is mainly used to solve the problem of data classification in the field of pattern recognition. It is a class of generalized linear classifiers that classify data in a supervised learning way. As shown inUTF-8...

Posted by discorevilo on Wed, 14 Jul 2021 03:29:04 +0930

Face recognition - weixin_51002909 blog - CSDN blog

Face recognition technology refers to the use of computer technology of analysis and comparison to recognize faces. Face recognition is a hot research field of computer technology, including face tracking and detection, automatic image amplification, night infrared detection, automatic adjustmeUTF-8...

Posted by dotsc on Wed, 15 Dec 2021 06:23:33 +1030

Implementation of random forest in sklearn

Random forest summary Overview of integration algorithms Ensemble learning is a machine learning algorithm that has attracted much attention. It is not a single machine learning algorithm, but builds the data model many times and integrates the modeling results of all models. Goal of integratioUTF-8...

Posted by Chinese on Wed, 15 Dec 2021 17:03:09 +1030

Use GridSearchCV to tune the parameters of XGboost model

First of all, fortunately, scikit learn provides a function to help us better adjust parameters: ​sklearn.model_selection.GridSearchCV​ Interpretation of common parameters: estimator: if XGBoost is used in the competition, it is the generated model. For example: model = XGB XGBRegressor(**otherUTF-8...

Posted by Eric! on Thu, 16 Dec 2021 05:19:09 +1030

Summary of sklearn building linear model

1. Get data analysis data First, use flash to request mysql database, obtain data from the database and save it to csv file Read database data from flask import Flask,Response, json from flask_sqlalchemy import SQLAlchemy from flask import jsonify from MyEncoder import MyEncoder from DateEncodeUTF-8...

Posted by pmzq on Mon, 20 Dec 2021 21:41:43 +1030

[machine learning] < < Liu Jianping Pinard's blog learning record > > random data generation of machine learning algorithm

catalogue 1, Numpy generates random numbers: 2, Introduction to scikit learn random data generation API: 3, Scikit learn random data generation example: 1. Random data of regression model: 2. Classification model random data: 3. Clustering model random data: 4. Grouped normal distribution mixedUTF-8...

Posted by dbillings on Sat, 25 Dec 2021 19:26:34 +1030

Integrated learning: lightGBM

Rimeng Society AI AI:Keras PyTorch MXNet TensorFlow PaddlePaddle deep learning real combat (irregular update) Integrated learning: Bagging, random forest, Boosting, GBDT Integrated learning: XGBoost Integrated learning: lightGBM (I) Integrated learning: lightGBM (II) 5.8 Jedi survival player raUTF-8...

Posted by nitharsanke on Tue, 28 Dec 2021 02:30:27 +1030

Playing with jpmml's tpot+sklearn2pmml automated machine learning integration model deployment

preface It should be the first original. I didn't find it on the Internet. The overall logic is: data import - tpot automatic machine learning selects the most suitable model and data preprocessing ideas - convert to sklearn code - convert to PMML model through sklearn2pmml Library - deploy in UTF-8...

Posted by mikeschuld on Mon, 03 Jan 2022 07:42:46 +1030

sklearn - integration model

The goal of integrated learning is to build learning algorithms that combine the predictions of a set of base learners to improve the universality and robustness of individual learners. There are usually two ways: averaging: Construct a set of independent learners to average predictions. As thUTF-8...

Posted by 14zero on Mon, 03 Jan 2022 19:50:35 +1030

Basic machine learning algorithm

2. Classification algorithm k-nearest neighbor algorithm Judgment basis of classification algorithm: the target value is discrete 2.1 basic concept, principle and application of k-proximity algorithm K-nearest neighbor algorithm is a basic classification and regression method. This paper only dUTF-8...

Posted by d_priyag on Thu, 20 Jan 2022 04:37:44 +1030