Topic 10. Univariate Logistic regression analysis - univariate analysis table

In the previous period, I learned how to summarize the results of univariate Cox regression. In this period, I learned the summary of univariate Logistic regression scores. Because the two functions of coxph * * * * and glm are used, the display of results is different, so the sorting process is slightly different, but the extracted information ...

Added by gergy008 on Mon, 17 Jan 2022 14:34:28 +0200

How to define your own Dataset using the Dataset class in pytoch

Article catalog preface1, What is the Dataset class?2, Rewrite steps1. Import and storage2. Data set introduction3. Data set rewriting4. Dataset callsummary preface When reproducing the previous papers, the author wrote the data set processing in the source code, but now most of the code written by pytorch uses Dataset class combined ...

Added by Cory94bailly on Mon, 17 Jan 2022 04:48:08 +0200

How to detect random walk and white noise in time series prediction

introduce No matter how powerful, machine learning cannot predict everything. For example, in the field related to time series prediction, the performance is not very good. Although a large number of autoregressive models and many other time series algorithms are available, the target distribution cannot be predicted if the target distribut ...

Added by atoboldon on Mon, 17 Jan 2022 00:52:35 +0200

Artificial intelligence ② -- logical regression and iris set

Catalogue   I Manual push to achieve logistic regression gradient descent II Classification of iris data set by logistic regression      1. Introduction to iris data set      2. What is a linear classifier      3. Main steps of designing linear classifier      4. Rough defin ...

Added by goltoof on Sun, 16 Jan 2022 16:57:05 +0200

Markov model for word processing

Markov models are often used to analyze a large number of random events After a discrete event occurs, another discrete event will occur with a certain probability under the condition of the previous event. For example, we can establish a Markov model for a weather system: In this weather system model, if it is sunny today, there is 70% possib ...

Added by Chelsove on Sun, 16 Jan 2022 09:23:33 +0200

[machine learning] basic learning notes of DS 3: neural network foundation and multi class classification

Neural network foundation and multi class classification 3.1 model representation 3.1.1 why do we need neural networks Both linear regression and logistic regression learned in the first two sections have a disadvantage: when there are too many features, the calculation load will be very large. For example, in identifying whether a pictu ...

Added by Gecko24 on Sun, 16 Jan 2022 07:15:59 +0200

Five implementation strategies of spatial shift operation in Python

Five implementation strategies of spatial shift operation in Python This article has authorized the platform of the polar city and is the official account of the polar platform. No second reprint is allowed without permission Original document (may be further updated): https://www.yuque.com/lart/ugkv9f/nnor5p preface Previously, I read ...

Added by savj14 on Sun, 16 Jan 2022 06:05:07 +0200

Machine learning notes - Implementation of linear non separable support vector machine

Implementation of linear non separable support vector machine    in the article of support vector machine, we have derived the mathematical model of linear non separable support vector machine in detail, and transformed the original problem into a dual problem to be solved. Revisit the dual problem as follows: Final form of dual ...

Added by kryptn on Sun, 16 Jan 2022 04:32:23 +0200

Machine learning notes - Implementation of nonlinear support vector machine

Implementation of nonlinear support vector machine Suppose that the nonlinear problem we face is the following two classification problem:    it requires us to find a suitable curve that can correctly distinguish red and blue sample points. There is no doubt that linear support vector machine can not solve this kind of problem. We ...

Added by lukelee on Sat, 15 Jan 2022 11:55:42 +0200

Based on Weka platform, the attribute weighted naive Bayesian algorithm based on differential evolution algorithm is studied

Based on Weka platform, the attribute weighted naive Bayesian algorithm based on differential evolution algorithm is studied Personal interest, hope to help you preface    naive Bayesian algorithm is widely used because of its high classification accuracy and simple model, but it is difficult to realize in practical classif ...

Added by slimboy007 on Fri, 14 Jan 2022 17:35:09 +0200