Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

演習4-3について #1

Open
showhey0119 opened this issue Jan 17, 2023 · 1 comment
Open

演習4-3について #1

showhey0119 opened this issue Jan 17, 2023 · 1 comment

Comments

@showhey0119
Copy link

初めまして。真面目なプログラマのためのディープラーニング入門で勉強中です。とても分かりやすくて助かっています。

演習4-3のコードについてですが、ピタゴラスの定理の部分で
ya = np.sqrt((x**2) / 3)
とありますが、長さが3のndarrayが出てきてしまいます。
これを
ya = np.sqrt(np.sum(x**2)/3)
に変更したら動きました。

Python初心者なので自信がありませんが、あってますでしょうか?

@euske
Copy link
Owner

euske commented Feb 25, 2023

@showhey0119 さま
お返事が遅れまして申し訳ありません。ご指摘ありがとうございます。
はい、おっしゃるとおり、 np.sum を使ったコードが正しいです (この部分、文章中に書いただけで、実際にテストしていませんでした)。
文章を修正し、 src/nn_numpy.py 中にも正しいコードを追加しました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants