【人工智能】<吴恩达-机器学习>监督学习&非监督学习

简介: 【1月更文挑战第26天】【人工智能】<吴恩达-机器学习>监督学习&非监督学习

 目录

一、机器学习概述 - What is machine learning ?:

二、机器学习分类 - Machine learning algorithms:

1.监督学习 - Supervised learning:

2.无监督学习 - Unsupervised learning:

Cocktail party problem algorithm:


一、机器学习概述 - What is machine learning ?:

    • Machine learning: Field of study that gives computers the ability to learn without being explicitly programmed.
    • Machine learning: A computer program is said to learn from experience E with respect to some task T and some performance measure P, if its performance on T, as measure by P, improves with experience E.

    image.gif编辑

    The correct answer is the first choice.


    二、机器学习分类 - Machine learning algorithms:

      • Supervised learning
      • Unsupervised learning
      • Others: Reinforcenment learning, Recommender systems

      1.监督学习 - Supervised learning:

      image.gif编辑

             Supervised learning, also known as supervised machine learning, is a subcategory of machine learning and artificial intelligence. It is defined by its use of labeled datasets to train algorithms that to classify data or predict outcomes accurately. As input data is fed into the model, it adjusts its weights until the model has been fitted appropriately, which occurs as part of the cross validation process. Supervised learning helps organizations solve for a variety of real-world problems at scale, such as classifying spam in a separate folder from your inbox.

      image.gif编辑

        • Supervised Learning: right answers given
        • Regerssion: Predict continuous valued output (price)

        image.gif编辑

          • Classification: Discrete valued output (0 or 1)

          image.gif编辑

          The corrcet answer is the third choice.

          2.无监督学习 - Unsupervised learning:

          image.gif编辑

                 Unsupervised learning is a type of machine learning in which the algorithm is not provided with any pre-assigned labels or scores for the training data. As a result, unsupervised learning algorithms must first self-discover any naturally occurring patterns in that training data set. Common examples include clustering, where the algorithm automatically groups its training examples into categories with similar features, and principal component analysis, where the algorithm finds ways to compress the training data set by identifying which features are most useful for discriminating between different training examples, and discarding the rest. This contrasts with supervised learning in which the training data include pre-assigned category labels (often by a human, or from the output of non-learning classification algorithm). Other intermediate levels in the supervision spectrum include reinforcement learning, where only numerical scores are available for each training example instead of detailed tags, and semi-supervised learning where only a portion of the training data have been tagged.

          image.gif编辑

          The correct answer is the second choice and the third choice.

          Cocktail party problem algorithm:

          ICA(独立成分分析)

          image.gif编辑

                 “鸡尾酒会问题”(cocktailparty problem)是在计算机语音识别领域的一个问题,当前语音识别技术已经可以以较高精度识别一个人所讲的话,但是当说话的人数为两人或者多人时,语音识别率就会极大的降低,这一难题被称为鸡尾酒会问题。

                 该问题描述的是给定混合信号,如何分离出鸡尾酒会中同时说话的每个人的独立信号。当有N个信号源时,通常假设观察信号也有N个(例如N个麦克风或者录音机)。该假设意味着混合矩阵是个方阵,即J = D,其中D是输入数据的维数,J是系统模型的维数。要分离出鸡尾酒会中同时说话的每个人的独立信号。

          相关文章
          |
          29天前
          |
          机器学习/深度学习 人工智能 运维
          【人工智能技术专题】「入门到精通系列教程」打好AI基础带你进军人工智能领域的全流程技术体系(机器学习知识导论)(二)
          【人工智能技术专题】「入门到精通系列教程」打好AI基础带你进军人工智能领域的全流程技术体系(机器学习知识导论)
          59 1
          |
          29天前
          |
          机器学习/深度学习 人工智能 自然语言处理
          【人工智能技术专题】「入门到精通系列教程」打好AI基础带你进军人工智能领域的全流程技术体系(机器学习知识导论)(一)
          【人工智能技术专题】「入门到精通系列教程」打好AI基础带你进军人工智能领域的全流程技术体系(机器学习知识导论)
          73 1
          |
          14天前
          |
          机器学习/深度学习 人工智能 运维
          |
          15天前
          |
          机器学习/深度学习 人工智能 自然语言处理
          |
          1月前
          |
          机器学习/深度学习 算法
          机器学习的魔法(二)超越预测的界限-揭秘机器学习的黑科技-探索监督学习中的回归和分类问题
          机器学习的魔法(二)超越预测的界限-揭秘机器学习的黑科技-探索监督学习中的回归和分类问题
          134 0
          |
          1月前
          |
          机器学习/深度学习 存储 搜索推荐
          利用机器学习算法改善电商推荐系统的效率
          电商行业日益竞争激烈,提升用户体验成为关键。本文将探讨如何利用机器学习算法优化电商推荐系统,通过分析用户行为数据和商品信息,实现个性化推荐,从而提高推荐效率和准确性。
          |
          24天前
          |
          机器学习/深度学习 算法 搜索推荐
          Machine Learning机器学习之决策树算法 Decision Tree(附Python代码)
          Machine Learning机器学习之决策树算法 Decision Tree(附Python代码)
          |
          1月前
          |
          机器学习/深度学习 算法 数据可视化
          实现机器学习算法时,特征选择是非常重要的一步,你有哪些推荐的方法?
          实现机器学习算法时,特征选择是非常重要的一步,你有哪些推荐的方法?
          27 1
          |
          1月前
          |
          机器学习/深度学习 数据采集 算法
          解码癌症预测的密码:可解释性机器学习算法SHAP揭示XGBoost模型的预测机制
          解码癌症预测的密码:可解释性机器学习算法SHAP揭示XGBoost模型的预测机制
          117 0
          |
          1月前
          |
          机器学习/深度学习 数据采集 监控
          机器学习-特征选择:如何使用递归特征消除算法自动筛选出最优特征?
          机器学习-特征选择:如何使用递归特征消除算法自动筛选出最优特征?
          71 0

          热门文章

          最新文章