{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# パーセプトロンとは" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "* 複数の信号を入力して受け取り、一つの信号を出力する\n", "* 入力信号は「ニューロン」から発信される\n", "* 受け取ったニューロンは重み(weight)を乗算し、そのすべての総和を求める\n", "* 総和が *ある限界値* を超えると、新たな信号を出力する\n", "* ある限界値は *閾値* と呼ぶ。本ではθ (シータ) と表現する" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "とあるニューロンの信号 y の条件は以下の通りとなる\n", "$$\n", " y = \n", " \\begin{cases}\n", " 0 \\quad (w_1 x_1 + w_2 x_2 \\leqq \\theta) \\\\\n", " 1 \\quad (w_1 x_1 + w_2 x_2 > \\theta) \\\\\n", " \\end{cases}\n", "$$" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.3" } }, "nbformat": 4, "nbformat_minor": 4 }