亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用Python怎么編寫一個感知器的邏輯電路

發布時間:2020-12-28 14:39:37 來源:億速云 閱讀:185 作者:Leah 欄目:開發技術

本篇文章為大家展示了利用Python怎么編寫一個感知器的邏輯電路,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

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 ============================================================================

上述內容就是利用Python怎么編寫一個感知器的邏輯電路,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

合江县| 绥中县| 承德县| 根河市| 莱芜市| 广宁县| 昭平县| 蚌埠市| 白城市| 农安县| 永福县| 专栏| 会宁县| 稻城县| 宜春市| 田林县| 岳普湖县| 池州市| 安西县| 沁水县| 偃师市| 陇西县| 黄平县| 南木林县| 张家口市| 双桥区| 庐江县| 社旗县| 常山县| 寻甸| 鄯善县| 河源市| 婺源县| 汾西县| 芜湖市| 基隆市| 宜昌市| 宝坻区| 嘉鱼县| 柯坪县| 南陵县|