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

简介: 【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是系统模型的维数。要分离出鸡尾酒会中同时说话的每个人的独立信号。

          相关文章
          |
          3月前
          |
          机器学习/深度学习 自然语言处理 算法
          机器学习核心:监督学习与无监督学习
          本文深入解析了机器学习中的监督学习与无监督学习,涵盖理论基础、应用场景及典型算法实现,如线性回归、决策树、K均值聚类和主成分分析,并通过代码示例加深理解。适合初学者和进阶者阅读。
          163 5
          |
          4月前
          |
          机器学习/深度学习 传感器 算法
          机器学习入门(一):机器学习分类 | 监督学习 强化学习概念
          机器学习入门(一):机器学习分类 | 监督学习 强化学习概念
          |
          9月前
          |
          机器学习/深度学习 人工智能 运维
          【人工智能技术专题】「入门到精通系列教程」打好AI基础带你进军人工智能领域的全流程技术体系(机器学习知识导论)(二)
          【人工智能技术专题】「入门到精通系列教程」打好AI基础带你进军人工智能领域的全流程技术体系(机器学习知识导论)
          327 1
          |
          9月前
          |
          机器学习/深度学习 人工智能 自然语言处理
          【人工智能技术专题】「入门到精通系列教程」打好AI基础带你进军人工智能领域的全流程技术体系(机器学习知识导论)(一)
          【人工智能技术专题】「入门到精通系列教程」打好AI基础带你进军人工智能领域的全流程技术体系(机器学习知识导论)
          414 1
          |
          9月前
          |
          机器学习/深度学习 人工智能 运维
          |
          8月前
          |
          机器学习/深度学习 算法 数据挖掘
          机器学习中的监督学习与非监督学习
          在机器学习领域,算法主要分为两大类:监督学习(Supervised Learning)和非监督学习(Unsupervised Learning)。这两种方法在数据处理和问题解决方面各有特点和应用场景。本文将详细介绍监督学习与非监督学习的基本概念、区别以及它们的常见应用。
          300 0
          |
          9月前
          |
          机器学习/深度学习 人工智能 自然语言处理
          |
          9月前
          |
          机器学习/深度学习 算法 数据可视化
          【Python 机器学习专栏】机器学习中的监督学习与无监督学习
          【4月更文挑战第30天】本文探讨了监督学习和无监督学习的概念、原理及应用。监督学习依赖于已知标签,通过学习输入与输出的关系进行预测,如线性回归、逻辑回归等,常用于信用评分、疾病诊断等。无监督学习则在无标签情况下发现数据隐藏结构,如聚类和主成分分析,适用于客户细分、数据可视化等。两者在实际中常结合使用,以提升模型性能和泛化能力。理解这两种方法对于解决复杂数据问题至关重要。
          143 0
          |
          9月前
          |
          人工智能 自然语言处理 数据处理
          【专栏】人工智能中监督学习在快速发展的科技时代中的重要性。其应用方向有哪些?
          【4月更文挑战第28天】本文探讨了监督学习在快速发展的科技时代中的重要性。作为人工智能的关键分支,监督学习通过已标记数据训练模型以进行预测和分类。文章阐述了其基本概念、训练过程和评估方法,并列举了图像识别、语音识别、自然语言处理、医疗和金融等领域中的应用案例。同时,指出了数据标注、模型复杂度、可解释性等问题及未来发展趋势,强调了监督学习的广阔前景和潜力。
          162 0
          |
          9月前
          |
          机器学习/深度学习 算法
          机器学习的魔法(二)超越预测的界限-揭秘机器学习的黑科技-探索监督学习中的回归和分类问题
          机器学习的魔法(二)超越预测的界限-揭秘机器学习的黑科技-探索监督学习中的回归和分类问题
          192 0