[Li Hongyi machine learning] Basic Concept (p4) learning notes

Summary of Li Hongyi's machine learning notes Course links Review The more complex the model, the lower the error on the testing data. error comes from two places: biasvariance f_star is f_ An estimate of hat, f_star may not be equal to f_hat, the distance may come from bias or variance Estimate the mean value of variab ...

Posted by -Zeus- on Tue, 23 Nov 2021 23:58:56 -0800

[comb 1 of ORB-SLAM2 key knowledge points] the relationship among key frames, common views, extension trees and essential diagrams

preface I don't know what to write in this preface. Let's encourage each other. 1, KeyFrame In short: a key frame is a representative of several ordinary frames. 1. Function and significance Reduce the information redundancy in local adjacent key frames;In SLAM scheme, the depth of ordinary frame will be projected onto the key fr ...

Posted by slyte33 on Tue, 23 Nov 2021 16:27:34 -0800

Naive Bayes

1, Bayes theorem 1. Introduction           Bayesian theory is named after Thomas Bayes, A theologian in the 18th century. Generally, the probability of event A under the condition of event B (occurrence) is different from that of event B under the condition of event A (occurrence); However, there i ...

Posted by Chronos on Mon, 22 Nov 2021 11:12:19 -0800

[Machine learning experiment 4] Hand pose recognition based on Logistic Regression binary classification algorithm

All code for this experiment has been uploaded to your personal github repository: https://github.com/Scienthusiasts/Machine-Learning Logistic Regression for Gesture Recognition A long time ago, bloggers themselves had conceived a complete gesture recognition system with an interface, which could not only detect the gesture of the hand, b ...

Posted by porco on Mon, 22 Nov 2021 09:59:30 -0800

Flink of big data

preface stay Flink of big data (Part I) In this paper, we introduce the characteristics, architecture, two-stage submission and data flow of Flink. This paper introduces the unique operator of Flink and the case of implementing WordCount with Flink 1, split and select operators The split operator splits a DataStream into two or more ...

Posted by hoogeebear on Mon, 22 Nov 2021 07:22:57 -0800

Machine learning training camp -- come and explore happiness

preface This learning note is the learning content of Alibaba cloud Tianchi Longzhu plan machine learning training camp. The learning links are: https://tianchi.aliyun.com/specials/promotion/aicampml Competition link: Come and explore happiness together! Friendly reminder: I just started learning machine learning. Some places may not b ...

Posted by retro on Mon, 22 Nov 2021 04:13:17 -0800

Bayesian classification preview report with minimum error rate

1, Experimental purpose This experiment aims to let students have a preliminary understanding of pattern recognition and have a deep understanding of Bayesian classification algorithm according to their own design 2, Experimental principle 1. Bayesian classification algorithm         Bayesian classification algorithm is a ...

Posted by expertis on Sun, 21 Nov 2021 23:51:30 -0800

Running machine learning based on Tensorflow framework on Apache hadoop yarn

The links included in the development and application of machine learning introduce the method and process of running machine learning based on Tensorflow framework on apache hadoop yarn (Introduction to the links involved in development and application of machine learning, and the method and process of running machine learning based on ...

Posted by dan182skater on Sun, 21 Nov 2021 19:55:32 -0800

Spark read csv file operation, option parameter explanation

  import com.bean.Yyds1 import org.apache.spark.sql.SparkSession object TestReadCSV { def main(args: Array[String]): Unit = { val spark = SparkSession.builder() .appName("CSV Reader") .master("local") .getOrCreate() /** * Parameters can be either strings or specific types, such as boolean * delimiter Separat ...

Posted by George Botley on Sun, 21 Nov 2021 12:20:33 -0800

Machine learning -- Logistic regression

catalogue 1, Basic concept of regression 2, Classification based on Logistic regression and Sigmoid function 3, Determination of optimal regression coefficient based on optimization method 1. Maximum likelihood estimation Recap 2. Gradient rise method 3. Prepare data: a simple data set 4. Training algorithm: use gradient rise to find the ...

Posted by Glyde on Sun, 21 Nov 2021 10:35:33 -0800