Machine learning linear regression

linear regression Linear regression, also known as ordinary least square method, is the simplest and most classic regression method for regression problems 1. Use numpy linear regression (1) Function: p = polyfit(x,y,n) x is the abscissa of the known discrete data point, y is the ordinate of the known discrete data point, n is the highes ...

Posted by cavedave on Sun, 20 Feb 2022 11:25:16 +0100

Summary of six common methods of visual deep learning model architecture

Visualization helps to explain and understand the internal structure of deep learning model. Through the visualization of the model calculation diagram, we can find out how the neural network is calculated. The visualization of the model mainly includes the following aspects:How many layers does the model haveInput and output shapes of each lay ...

Posted by zonkd on Sun, 20 Feb 2022 05:26:17 +0100

Machine learning watermelon book after class Exercise 3.4 -- python solution cross validation and the right rate regression error rate of leave one method

Machine learning watermelon book after class Exercise 3.4 -- python solution cross validation and the right rate regression error rate of leave one method Watermelon book P69 3.3 select two UCI data sets and compare the error rate of pair rate regression estimated by 10 fold cross validation method and leave one method Dataset: Iris dat ...

Posted by undertow on Sat, 19 Feb 2022 20:44:38 +0100

Hey, dare you come to a class!

The so-called people gather in groups and things divide in groups. People like to be with people who have the same personality and hobbies. Commonly known as: get along! Pretty boy, I like you very much~ A and B were childhood sweethearts. A met C through B and found that their interests and hobbies were surprisingly consistent. The three g ...

Posted by eRott on Sat, 19 Feb 2022 18:09:16 +0100

Data processing algorithm_ 2015 dataset

background Download address: https://rrc.cvc.uab.es/?ch=4&com=downloads Note: this data is open source data, but you need to register an account. You can download it simply by registering; Introduction: it is used for text detection task. The data includes 1000 training samples and 500 test samples; Required data display Firstly, the d ...

Posted by basdog22 on Sat, 19 Feb 2022 16:57:28 +0100

Integrated learning - xgboost learning

XGboost related learning from xgboost import XGBRegressor as XGBR from sklearn.ensemble import RandomForestRegressor as RFR from sklearn.linear_model import LinearRegression as LinearR from sklearn.datasets import load_boston from sklearn.model_selection import KFold, cross_val_score as CVS, train_test_split as TTS from sklearn.metrics import ...

Posted by Sir Mildred Pierce on Sat, 19 Feb 2022 15:18:46 +0100

Plane data classification of deep learning single hidden layer

Teacher Wu began to build a hidden neural network. 1, Importing datasets and drawing Two files are required before importing the dataset. Please refer to [data] import numpy as np import pandas as pd from matplotlib import pyplot as plot from testCases import * import sklearn from sklearn import datasets from sklearn import linear_model from ...

Posted by jlgray48 on Sat, 19 Feb 2022 05:58:59 +0100

Learning notes of financial risk control training camp game question understanding (task 2)

This learning note is the learning content of Alibaba cloud Tianchi Longzhu Docker training camp. The learning links are: https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.20850282.J_3678908510.4.f2984d57AnIOhB&postId=170949 Task 2 purpose: 1. The value of EDA mainly lies in being familiar with the basic situation of the whole dat ...

Posted by ina on Sat, 19 Feb 2022 04:52:35 +0100

The most easy to understand BERT principle and code implementation

The secondary market can be divided into many "sects", including technology, fundamentals and news. This issue is based on the quantitative content of the news. The most common idea is to analyze public opinion and judge market sentiment, so as to make investment decisions. Public opinion analysis involves a sub field of artifici ...

Posted by imran.rajani on Sat, 19 Feb 2022 03:08:32 +0100

Linear regression

Univariate linear regression Model description For the model affected by a single variable, we usually abstract it into the form of univariate primary function, and we assume a hypothetical function H( θ)=θ 0+ θ 1x Cost function When we make a hypothetical function, we need to determine θ 0 and θ 1 the values o ...

Posted by Tanus on Fri, 18 Feb 2022 04:07:40 +0100