当前位置:网站首页>[machine learning] what is machine learning?
[machine learning] what is machine learning?
2022-06-25 12:56:00 【Coconut brine Engineer】
What is machine learning ?
Provides two definitions of machine learning . Arthur · Samuel (Arthur Samuel) Describe it as :“ Research areas that allow computers to learn without explicit programming .” This is an older informal definition .
Tom Mitchell Provides a more modern definition :“ If the computer program is T Performance on tasks in ( With P To measure ) With experience E Improve , From experience E Learn about a certain type of task T And performance metrics P. ”
for instance : Playing chess
E = The experience of playing checkers many times Examination
T = The task of playing chess .
P = The probability that the program will win the next game .
Generally speaking , Any machine learning problem can be classified into one of two categories : Supervised learning and unsupervised learning .
Supervised learning
In supervised learning , We got a data set , And we already know what our correct output should look like , And know that there is a relationship between input and output .
Supervised learning problems are divided into “ Return to ” and “ classification ” problem .
- In the regression problem , We try to predict the results in continuous output , This means that we try to map input variables to some continuous function .
- In the classification problem , We try to predict results in discrete outputs . let me put it another way , We try to map input variables into discrete categories .
Example 1:
Given data on the size of houses in the real estate market , Try to predict their prices . Price as a function of scale is a continuous output , So this is a question of regression .
We can turn this example into a classification problem , Rather than let our output about whether the house “ The selling price is higher or lower than the asking price ”. ad locum , We divide houses into two separate categories according to price .
Example 2:
(a) Return to —— Give a picture of someone , We have to predict their age based on a given picture .
(b) classification —— Given a patient with a tumor , We must predict whether the tumor is malignant or benign .
Unsupervised learning
Unsupervised learning enables us to solve problems with little knowledge of what the outcome should be . We can deduce the structure from the data , And we don't necessarily know the influence of variables .
We can deduce this structure by clustering the data based on the relationship between variables in the data .
For unsupervised learning , There is no feedback based on the predicted results .
Example :
clustering : collect 1,000,000 Two different genes , And find a way , These genes are automatically grouped to some extent similar or through different variables ( For example, life 、 Location 、 Roles, etc ) In related groups .
Nonclustering :“ Cocktail party algorithm ”, Allows you to find structures in a chaotic environment .( That is to identify personal voice and music from the voice network at the cocktail party )
边栏推荐
- Jenkins Pipeline使用
- Differences between JS and JQ operation objects
- WIN10环境下配置pytorch
- Using CMD (command prompt) to install MySQL & configure the environment
- Why are databases cloud native?
- PPT绘论文图之导出分辨率
- Select randomly by weight [prefix and + dichotomy + random target]
- 剑指 Offer 第 1 天栈与队列(简单)
- GPS receiver design (1)
- flutter 收到推送后自动消失问题
猜你喜欢

CUDA error: unspecified launch failure

出手即不凡,这很 Oracle!

美创入选“2022 CCIA中国网络安全竞争力50强”榜单

GNSS receiver technology and application review

Geospatial search: implementation principle of KD tree
![[AI helps scientific research] fool drawing of loss curve](/img/38/5cb2a3d33a609dab3874215d5f7b5b.png)
[AI helps scientific research] fool drawing of loss curve

PPT绘图之AI助力论文图
![[data visualization] 360 ° teaching you how to comprehensively learn visualization - Part 1](/img/36/167397ce61240036c865dd99463f1b.jpg)
[data visualization] 360 ° teaching you how to comprehensively learn visualization - Part 1
模块五(微博评论)

康威定律,作为架构师还不会灵活运用?
随机推荐
量化交易之回测篇 - 期货CTA策略策略(TQZFutureRenkoWaveStrategy)
Wechat full-text search technology optimization
The drop-down box renders numbers instead of the corresponding text. How to deal with it
百度搜索稳定性问题分析的故事
画图常用配色
更新pip&下载jupyter lab
It is extraordinary to make a move, which is very Oracle!
使用Visio画立方体
C program linking SQLSERVER database: instance failed
Oracle trigger error report table or view does not exist
PPT绘论文图之导出分辨率
GPS receiver design (1)
list.replace, str.append
mysql导入导出数据到excel表日期出现问题
MySQL adds, modifies, and deletes table fields, field data types, and lengths (with various actual case statements)
顺序表的折半查找法
Differences between JS and JQ operation objects
三入职场!你可以从我身上学到这些(附毕业Vlog)
PPT绘图之AI助力论文图
剑指 Offer II 025. 链表中的两数相加