deep-learning-from-scratch icon indicating copy to clipboard operation
deep-learning-from-scratch copied to clipboard

『밑바닥부터 시작하는 딥러닝』(한빛미디어, 2017)

Results 8 deep-learning-from-scratch issues
Sort by recently updated
recently updated
newest added

미치배치 -> 미니배치

Windows PC환경에서는 sys.path.append(os.pardir) 만으로는 ModuleNotFoundError에러가 발생함. sys.path.append(os.path.abspath(os.path.join(__file__, '..', '..')))를 추가하여 해결가능합니다.

i modified mean_squared_error using divide by size of y and renamed previous mean squared error to squared_error.

1. Correction of typo of function name : _change_ont_hot_label() -> _change_one_hot_label() 2. Fix : Input to numerical_gradient() in main()

I am appreciated studying the deep-learning with this book.