qt learning notes

Video link https://www.bilibili.com/video/BV1Wf4y1Y7uh Qt common tools assistant: api manual qmake: qt builder designer: graphical interface design uic: convert the interface designed by designer into C + + or py file rcc: resource compiler moc: meta object compiler qtcreator: integrated development environment Making the first GUI prog ...

Added by andym01480 on Mon, 07 Mar 2022 03:36:36 +0200

Data analysis practical project based on Lending Club [beginner record] [2]

This practical project is based on the dataset of Lending Club [dataset address: https://github.com/H-Freax/lendingclub_analyse/data/ ] This practical project is based on Colab environment brief introduction This practical project of data analysis is divided into two parts. The first part mainly introduces the Baseline method based on Lig ...

Added by Black Rider on Sat, 19 Feb 2022 03:02:42 +0200

Note | statistical learning method: Decision Tree

Basic concepts of decision tree Decision tree is a tree. The leaf node corresponds to the decision result, and each other node corresponds to an attribute test;The sample set contained in each node is divided into sub nodes according to the results of attribute test;The root node contains the complete set of samples, and the path from the roo ...

Added by catlover on Thu, 10 Feb 2022 12:46:58 +0200

"The strongest in the whole network" explains the decision tree of machine learning classification algorithm in detail (with visualization and code)

catalogue Walk into the decision tree Case 1 Case 2 Tree of soul Selection mechanism of decision tree Measurement rules of node purity Measurement of purity Background introduction of decision tree algorithm Information and quantification of information Information entropy Conditional entropy Information Gain (used by ID3 algorithm) ...

Added by lobobr on Sun, 06 Feb 2022 10:43:17 +0200

Python uses graphviz to generate decision trees dot file and convert it into png and other picture formats (with the specific function source code written by myself)

Recently, because of the great innovation, I began to learn machine learning. In the process of learning decision tree, I saw the related operations of decision tree visualization. Firstly, the tree object of sklearn library is used for tree building and model training: from sklearn import tree # Establish decision tree classifier dtc = t ...

Added by $SuperString on Mon, 31 Jan 2022 02:26:22 +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

Simple regression prediction of random forest

Simple regression prediction of random forest Random forest is a concrete implementation of bagging method. It will train multiple decision trees, and then integrate these results to be the final result. Random forest can be used for splitting or regression. It mainly depends on the selection of decision tree types, and selects specific type ...

Added by cloudnyn3 on Wed, 05 Jan 2022 14:08:37 +0200

Introduction to sklearn - Classification Tree

summary It is said that this tutorial focuses on application. I haven't understood the principle yet. I read the first six chapters when eating melons. It's also vague..... sklearn is to switch packages. I hope I can learn. The process is: Instantiate and establish the evaluation model object;Train the model through the model interface;Extrac ...

Added by gOloVasTicK on Thu, 30 Dec 2021 18:49:55 +0200

Integrated learning and Bagging

Integrated learning To be exact, ensemble learning is not a real machine learning algorithm, at least it does not introduce any new learning algorithm in essence. The overall idea of ensemble learning is to complete the final task through multiple basic (weak) learners. Just as it used to be a single challenge between an algorithm and a proble ...

Added by anujgarg on Thu, 30 Dec 2021 02:53:03 +0200

[machine learning sklearn] Decision Tree algorithm

Tip: here is a hard Ken 📕 If Xiaobai makes a mistake, change it. Don't spray it:) preface The sky can be mended, the sea can be filled, the mountains can be moved, the sun and the moon are past, and can not be pursued again. Decision Tree is based on tree structure to make decisions. (classification, regression) A decision tree contai ...

Added by deniscyriac on Sat, 25 Dec 2021 00:36:26 +0200