• 【AI】Course1 Introduction of Arificial Intelligence


    What is the goal to build artificial intelligence?
    Build an intelligent machine with mathematics and computing techniques to solve complex problems.

    Course 1 Intro of AI

    The era of big data

    In the era of big data, we are embracing the 4th revolution of industry.
    Industry 1.0: Mechanization
    Industry 2.0: Electrification
    Industry 3.0: Informatization
    Industry 4.0: Intellectualization

    What is Artificial Intelligence?

    John McCarthy: “Any task performed by a program or a machine that, if a human carried out the same activity, we would say the human had to apply intelligence to accomplish the task.”

    在这里插入图片描述

    AI: Engineering or Science

    Engineering:

    1. Build intelligent systems to solve problems in the world.
    2. Understanding mechanisms, algorithms, representations for building intelligent systems.

    Science:

    1. Understanding nature of intelligence.
    2. Implementing models of intelligence to evalute and understand.
    3. Exploring consequences of different algorithms and representations.

    Turing test

    Developed by Alan Turing in 1950, is a test of a machine’s ability to exhibit intelligent behavior equivalent to, or indistinguishable from, that of a human.

    Expert System

    Knowledge from an expert to built the Knowledge Base of the Expert System. So we need to know how to represent the knowledge.
    So the non-expert user can use the User Interface, which usually are computers, to query the questions,
    Then the user interface transfer the ques to the interence engine, which the engine try to match what is contain in the knowledge base, and give the answer/advice to the user.

    What driven ML?

    1) Better models
    With more variables to fit the data. From Rule-based -> Statistical -> Deep Learning.
    2) Better Computing resource
    More CPU, GPU, RAM.
    3) Also importantly, more data.

    What is Big Data-4V

    1) Volume
    Huge amount of data.
    2) Velocity
    Speed to create new data.
    3) Variety
    Plenty of type of data, including structured data, text, pictures, videos and so on.
    4) Veracity
    uncertained data, which maybe incompleteness, deception data …

    What is Machine Learning?

    Machine Learning is the field of study that gives the computer the ability to learn without being explicitly programmed.

    How to make Machine learn?

    First: Data collection.
    Second: Feature Extration
    Third: Feature Selection
    Forth: Make Models.

    The difference between Unsupervised learning and Supervised Learning

    Label data.
    supervised learning use the data with label.
    superviesd learning: dataset with labels:((x(1),y(1)),…,(x(m),y(m))
    unsupervised learning: dataset with no labels: (x(1),…,x(k))

    Regression and Classfication

    Regression: If y∈R is a continuous variable.
    Classification: If the label is a discrete variable.

    Reinforcement Learning

    Agent and environement interact at discrete time steps:
    Observes state
    Produces actions
    Gets resulting reward
    And Produces the next state

  • 相关阅读:
    职业成功指南:10条核心原则(上)丨三叠云
    electron 基础(2)
    日志pattern
    8万字带你入门Rust
    数位dp,338. 计数问题
    6.使用leetcode去练习语言
    C语言求方程根
    tcpdump
    基于Simulink的风电机组变桨距控制系统仿真研究
    亚马逊新手运营需要规避哪些风险?怎么分析竞争对手?——站斧浏览器
  • 原文地址:https://blog.csdn.net/weixin_43098506/article/details/126722346