Python如何实现感知器的逻辑电路

作者:何雨龙 时间:2021-01-09 00:41:38 

在神经网络入门回顾(感知器、多层感知器)中整理了关于感知器和多层感知器的理论,这里实现关于与门、与非门、或门、异或门的代码,以便对感知器有更好的感觉。

此外,我们使用 pytest 框架进行测试。


pip install pytest

与门、与非门、或门

通过一层感知器就可以实现与门、与非门、或门。

先写测试代码 test_perception.py:


from perception import and_operate, nand_operate, or_operate

def test_and_operate():
"""
测试与门
:return:
"""
assert and_operate(1, 1) == 1
assert and_operate(1, 0) == 0
assert and_operate(0, 1) == 0
assert and_operate(0, 0) == 0

def test_nand_operate():
"""
测试与非门
:return:
"""
assert nand_operate(1, 1) == 0
assert nand_operate(1, 0) == 1
assert nand_operate(0, 1) == 1
assert nand_operate(0, 0) == 1

def test_or_operate():
"""
测试或门
:return:
"""
assert or_operate(1, 1) == 1
assert or_operate(1, 0) == 1
assert or_operate(0, 1) == 1
assert or_operate(0, 0) == 0

写完测试代码,后面直接输入命令  pytest -v  即可测试代码。

这三个门的权重和偏置是根据人的直觉或者画图得到的,并且不是唯一的。以下是简单的实现,在 perception.py 中写上:


import numpy as np

def step_function(x):
"""
阶跃函数
:param x:
:return:
"""
if x <= 0:
 return 0
else:
 return 1

def and_operate(x1, x2):
"""
与门
:param x1:
:param x2:
:return:
"""
x = np.array([x1, x2])
w = np.array([0.5, 0.5])
b = -0.7
return step_function(np.sum(w * x) + b)

def nand_operate(x1, x2):
"""
与非门
:param x1:
:param x2:
:return:
"""
x = np.array([x1, x2])
w = np.array([-0.5, -0.5])
b = 0.7
return step_function(np.sum(w * x) + b)

def or_operate(x1, x2):
"""
或门
:param x1:
:param x2:
:return:
"""
x = np.array([x1, x2])
w = np.array([0.5, 0.5])
b = -0.3
return step_function(np.sum(w * x) + b)

运行  pytest -v 确认测试通过。


========================================================================== test session starts ===========================================================================
platform darwin -- Python 3.6.8, pytest-5.1.2, py-1.8.0, pluggy-0.12.0 -- /Users/mac/.virtualenvs/work/bin/python3
...
collected 3 items                                      

test_perception.py::test_and_operate PASSED                              [ 33%]
test_perception.py::test_nand_operate PASSED                              [ 66%]
test_perception.py::test_or_operate PASSED                               [100%]

=========================================================================== 3 passed in 0.51s ============================================================================

异或门

Python如何实现感知器的逻辑电路

如上图所示,由于异或门不是线性可分的,因此需要多层感知器的结构。

使用两层感知器可以实现异或门。

修改 test_perception.py 文件,加入异或门的测试代码 :


from perception import and_operate, nand_operate, or_operate, xor_operate

以及


def test_xor_operate():
"""
测试异或门
:return:
"""
assert xor_operate(1, 1) == 0
assert xor_operate(1, 0) == 1
assert xor_operate(0, 1) == 1
assert xor_operate(0, 0) == 0

在 perception.py 文件里加入异或门的函数:


def xor_operate(x1, x2):
"""
异或门
:param x1:
:param x2:
:return:
"""
s1 = nand_operate(x1, x2)
s2 = or_operate(x1, x2)
return and_operate(s1, s2)

我们通过与非门和或门的线性组合实现了异或门。

运行命令  pytest -v 测试成功。


========================================================================== test session starts ===========================================================================
platform darwin -- Python 3.6.8, pytest-5.1.2, py-1.8.0, pluggy-0.12.0 -- /Users/mac/.virtualenvs/work/bin/python3
...
collected 4 items                                      

test_perception.py::test_and_operate PASSED                              [ 25%]
test_perception.py::test_nand_operate PASSED                              [ 50%]
test_perception.py::test_or_operate PASSED                               [ 75%]
test_perception.py::test_xor_operate PASSED                              [100%]

=========================================================================== 4 passed in 0.60s ============================================================================

原文作者:雨先生
原文链接:https://www.cnblogs.com/noluye/p/11465389.html  
许可协议:知识共享署名-非商业性使用 4.0 国际许可协议

来源:https://www.cnblogs.com/noluye/p/11465389.html

标签:python,感知器,逻辑电路
0
投稿

猜你喜欢

  • 轻松掌握怎样从Windows命令行启动MySQL

    2009-02-23 17:18:00
  • js鼠标悬浮出现遮罩层的方法

    2024-02-23 10:37:43
  • JS版图片放大镜效果

    2024-04-30 08:50:57
  • 奇淫技巧之图片切割

    2010-09-21 13:24:00
  • ORACLE常用数值函数、转换函数、字符串函数

    2023-07-21 02:03:40
  • 使用PHP生成二维码的两种方法(带logo图像)

    2023-11-14 11:00:30
  • CSS Border使用小分享

    2010-08-12 14:34:00
  • Oracle不同数据库间对比分析脚本

    2010-07-26 13:24:00
  • python函数运行内存时间等性能检测工具

    2021-04-08 02:24:00
  • 解决Django部署设置Debug=False时xadmin后台管理系统样式丢失

    2022-05-09 00:33:57
  • pandas时间序列之如何将int转换成datetime格式

    2023-03-09 07:50:34
  • python如何基于redis实现ip代理池

    2022-11-05 20:49:08
  • caffe的python接口绘制loss和accuracy曲线

    2021-06-15 23:54:21
  • python3+opencv生成不规则黑白mask实例

    2023-10-06 11:01:25
  • Dreamweaver量身打造Wordpress留言板(二)

    2009-12-12 17:35:00
  • Python实现矩阵加法和乘法的方法分析

    2023-07-30 09:39:06
  • 浅析JavaScript中的隐式类型转换

    2024-04-29 13:38:22
  • Mysql查询优化之IN子查询优化方法详解

    2024-01-16 11:38:07
  • Python3操作MongoDB增册改查等方法详解

    2021-09-20 05:13:49
  • 推荐几款 Redis 可视化工具(太厉害了)

    2024-01-26 11:15:59
  • asp之家 网络编程 m.aspxhome.com