「ゼロから作るDeep Learning」斎藤康毅著 O'Reilly刊の「5.6 Affine/Softmaxレイヤの実装」を読んでいて引っかかった。「Affine変換って何だっけ?」Qiitaで アフィン変換 を検索したら下記の記事を ...
import matplotlib.pyplot as plt import matplotlib.animation as animation %matplotlib inline def updatefig(i): fig = plt.gcf() ax = plt.gca() ax.plot(i,i, "o") updatefig(10) # works plt.figure() # ...