ai推理

Inference means to find a conclusion based on the facts, information, and evidence. In simple words, when we conclude the facts and figures to reach a particular decision, that is called inference. In artificial intelligence, the expert system or any agent performs this task with the help of the inference engine. In the inference engine, the information and facts present in the knowledge base are considered according to the situation and the engine makes the conclusion out of these facts, based on which the further processing and decision making takes place in the agent.

推论是指根据事实,信息和证据找到结论 。 简而言之,当我们总结事实和数据以做出特定决策时,这称为推理。 在人工智能中,专家系统或任何代理在推理引擎的帮助下执行此任务。 在推理引擎中,根据情况考虑知识库中存在的信息和事实,引擎根据这些事实做出结论,并在此基础上在代理中进行进一步的处理和决策。

The inference process in an agent takes place according to some rules, which are known as the inference rules or rule of inference. Following are the major types of inference rules that are used:

在代理的推理过程根据一定的规则,其被称作推理规则推理规则进行。 以下是使用的推理规则的主要类型

1) Addition: This inference rule is stated as follows:

1)增加:该推理规则说明如下:

       P
----------
P v Q

2) Simplification: This inference rule states that:

2)简化:此推理规则指出:

     P ^ Q                               P ^ Q
----------                OR        ----------
P                                  Q

3) Modus Ponens: This is the most widely used inference rule. It states:

3)Modus Ponens:这是使用最广泛的推理规则。 它指出:

    P->Q
P
-----------
Q

4) Modus Tollens: This rule states that:

4)收费方式:该规则规定:

    P->Q
~Q
-----------
~P

5) Forward Chaining: It is a type of deductive Inference rule. It states that:

5)前向链接:这是一种演绎推理规则。 它指出:

    P
P->Q
-----------
Q

6) Backward Chaining: This is also a type of deductive inference rule. This rule states that:

6)向后链接:这也是一种演绎推理规则。 该规则指出:

    P
P->Q
-----------
P

7) Resolution: In the reasoning by resolution, we are given the goal condition and available facts and statements. Using these facts and statements, we have to decide whether the goal condition is true or not, i.e. is it possible for the agent to reach the goal state or not. We prove this by the method of contradiction. This rule states that:

7)解决方案:在通过解决方案进行推理时,我们获得了目标条件以及可用的事实和陈述。 使用这些事实和陈述,我们必须确定目标条件是否正确,即,代理是否有可能达到目标状态。 我们用矛盾的方法证明了这一点。 该规则指出:

    P v Q
~P^R
-----------
Q v R

8) Hypothetical Syllogism: This rule states the transitive relation between the statements:

8)假设三段论:该规则规定了陈述之间的传递关系:

    P->Q
Q->R
-----------
P->R

9) Disjunctive Syllogism: This rule is stated as follows:

9)断言三段论:该规则如下:

    P v Q
~P
-----------
Q

翻译自: https://www.includehelp.com/ml-ai/inference-in-terms-of-artificial-intelligence.aspx

ai推理

ai推理_人工智能推理相关推荐

  1. ai推理_人工智能推理能力问答

    ai推理 1) Which of the following statements correctly define the concept of Inference in AI? It is the ...

  2. ai 计算机视觉_人工智能中的计算机视觉

    ai 计算机视觉 While a three-year-old child has a lot to learn about the world, one thing that he is alrea ...

  3. ai决策_人工智能时代的决策

    ai决策 Possible consequences of decisions algorithms make on our behalf 决策算法可能代表我们做出的可能后果 Imagine you ...

  4. 人工智能ai 学习_人工智能中学习代理的要素

    人工智能ai 学习 As already discussed, the Learning agents have the capability to improve their knowledge b ...

  5. 人工智能ai知识_人工智能中基于知识的代理层

    人工智能ai知识 Every agent that has a knowledge base and an inference system is known as a knowledge-based ...

  6. 人工智能ai 学习_人工智能中强化学习的要点

    人工智能ai 学习 As discussed earlier, in Reinforcement Learning, the agent takes decisions in order to att ...

  7. 人工智能ai发展前景_人工智能促进可持续发展的社会

    人工智能ai发展前景 An off-shelf Artificial intelligence language processing system can generate as much as 1 ...

  8. ai人工智能的本质和未来_人工智能的未来在于模型压缩

    ai人工智能的本质和未来 The future looks towards running deep learning algorithms on more compact devices as an ...

  9. 利用NVIDIA NGC的TensorRT容器优化和加速人工智能推理

    利用NVIDIA NGC的TensorRT容器优化和加速人工智能推理 Optimizing and Accelerating AI Inference with the TensorRT Contai ...

最新文章

  1. 万字长文,一文搞懂TCP/IP和HTTP、HTTPS
  2. 深入理解阻塞socket和非阻塞socket
  3. 国内IDC行业现状及投资策略分析
  4. Python:数组添加数据和删除数据
  5. 有序数组中查找数字的范围
  6. 【《Effective C#》提炼总结】提高Unity中C#代码质量的21条准则
  7. python笔试编程题_Python——面试编程题
  8. Kettle 简介和实例
  9. iOS :高德地图SDK配置教程(安装CocoaPods、生成Podfile文件、安装SDK、demo简单使用等)
  10. Java String startsWith()方法
  11. 断电MySQL起不来_急求mysql 断电后无法启动解决方法!!!!
  12. [在职软件工程]面向对象的分析与设计
  13. PyTorch中文教程 | (10) 对抗性示例生成
  14. SpringBoot签名验签
  15. RTCP丢包重传策略之NACK
  16. lenovo计算机无法启动,联想台式电脑不能启动开机
  17. 洛谷 P5144 蜈蚣
  18. BT服务器的搭建(tracker-P2P服务器架设)(转)
  19. Mac看电视直播(通过MUMU安卓模拟器+自定义直播软件apk)
  20. java 自然周_java 使用Calendar类计算每月有多少自然周,并输出每周的开始和结束日期...

热门文章

  1. (Java)类比学生管理系统做一个游戏管理系统(不含JDBC)
  2. 魅族Flyme手机无法连接电脑ADB调试
  3. 《阿里云代码安全白皮书》5个维度应对3类代码安全问题
  4. MATLAB聚类分析--------2019/8/22
  5. windows无法完成安装,若要在此计算机上安装windows,请重新启动安装
  6. 一文看懂区块链技术安全,在安全行业区块链又有什么用
  7. 什么是绩优股、什么是垃圾股、蓝筹股、红筹股
  8. php的内存马的原理与查杀方法
  9. QCustomPlot 线样式,点样式
  10. 去哪儿网网页版机票数据添加代理