Machine learning -- clustering algorithm k-means 25

clustering algorithm A typical unsupervised learning algorithm, which is mainly used to automatically classify similar samples into one category. In the clustering algorithm, samples are divided into different categories according to the similarity between samples. Different clustering results will be obtained for different similarity calc ...

Added by slevytam on Fri, 11 Feb 2022 08:04:09 +0200

Word2vec of recommendation system

Word2vec of recommendation system Objective: in the tasks related to natural language processing, we should hand over the natural language to the algorithm in machine learning. Usually, we need to mathematicize the language, because the machine is not a human, and the machine only recognizes mathematical symbols. Vectors are things that people ...

Added by TheMayhem on Fri, 11 Feb 2022 07:41:59 +0200

Machine learning - Case Study 1: happiness prediction

Case 1 (happiness prediction) Background introduction Happiness involves philosophy, psychology, sociology, economics and other disciplines. At the same time, it is closely related to everyone's life. Everyone has his own measurement standard for happiness. If we can find the commonalities that affect happiness and find the policy factors tha ...

Added by fuji on Fri, 11 Feb 2022 01:25:45 +0200

Integrated learning 6 -- Blending and Stacking

github address: DataScicence Integrated learning 5-Xgboost principle and parameter tuning Integrated learning 4-forward step-by-step algorithm and GBDT principle and case Principles and cases of integrated learning 3-Boosting Principle and case analysis of integrated learning 2-bagging Principle and case analysis of integrated learning 1- votin ...

Added by rwcurry on Fri, 11 Feb 2022 00:36:19 +0200

[note] don't bother PYTHON | Tensorflow tutorial - high level content (Chapter 5)

5.1 Classification learning The qualitative output of Classification problem is Classification, or discrete variable prediction. Regression problem, the quantitative output is regression, or continuous variable prediction. """ Please note, this code is only for python 3+. If you are using python 2+, please modify the code accordingly. """ f ...

Added by sdyates2001 on Thu, 10 Feb 2022 23:21:41 +0200

When translation turns into text editing

Original text: Li Xiaolai @ study and study againIt only takes one day to translate a book! ——This is what I did today.At the beginning of this month, I explored the Google Cloud Translation API for a while. In the process, I found DeepL and directly turned around. I bought the Pro service for less than $24 a month and less than $3 ...

Added by danoli on Thu, 10 Feb 2022 23:03:17 +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

xgboost implementation of multi classification problem demo and its principle

This paper first writes the demo of the multi classification problem supported by xgboost, prints the tree structure, and then understands the principle of xgboost to realize the multi classification problem. This order is easier to understand. xgboost multi classification problem demo This demo can be seen from the source code of xgboost. In ...

Added by jaku78 on Thu, 10 Feb 2022 10:44:50 +0200

[teach you by hand] build neural network (classification of 3D images scanned by CT)

Feather low is a 3D scan based image that I want to share with you today. The article will divide and explain the whole code. After reading it completely, I believe you will gain something. Welcome to "Yufeng codeword" catalogue 1. Project introduction 2. API preparation 3. Data set preparation 3.1 downloading data 3.2 data p ...

Added by danoli on Thu, 10 Feb 2022 10:27:07 +0200

Machine learning -- clustering algorithm DBSCAN26

Density based approach: DBSCAN Visual website: https://www.naftaliharris.com/blog/visualizing-dbscan-clustering/ DBSCAN = Density-Based Spatial Clustering of Applications with Noise This algorithm divides the region with high enough density into clusters, and can find clusters of any shape Several concepts 𝛆 neighborhood: the area w ...

Added by inosent1 on Thu, 10 Feb 2022 09:24:02 +0200