이번 포스팅에서는 keras 패키지에 기본으로 들어있는 데이터인 mnist 데이터를 이용하여 딥러닝 입문을 해볼 것이다. mnist 데이터는 tensorflow를 입문할 때 가장 처음으로 다루게 되는 데이터이며 손글씨 데이터를 인식하는 것을 목표로 하는 데이터이다. > library(keras3) > mnist <- dataset_mnist() 2024-12-24 15:46:21.947354: I tensorflow/core/util/port.cc:153] oneDNN custom operations are on. You may see slightly different numerical results due to floating-point round-off errors from different computation orders.
To turn them off, set the environment variable `TF_ENABLE_ONEDNN_OPTS=0`. 2024-12-24 1...
원문 링크 : R로 딥러닝 시작해보기(with. minst data)