使用在MNIST上的三层网络
import sys, numpy as np
from keras.datasets import mnist
(x_train, y_train), (x_test, y_test) = mnist.lo
2023-11-30