Closed github-actions[bot] closed 3 months ago
パーセプトロンの限界は、このように 1 本の直線で分けた領域だけしか表現できない点にある(p30) パーセプトロンの素晴らしさは、“層を重ねる”ことができる点にある(p31)
実行
import numpy as np x = np.array([-1.0, 1.0, 2.0]) print(x)
y = x > 0 print(y)
[-1. 1. 2.] [False True True]
https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-python.html
#+begin_src python :session :results value
def foo(x):
if x>0:
return x+1
else:
return x-1
foo(1)
#+end_src
#+RESULTS:
#+begin_src
2
#+end_src
p145
StaleFile