Python数据分析基础----第十六天

import tensorflow as tf

from sklearn.datasets import load_digits

import numpy as np

digits = load_digits()

X_data = digits.data.astype(np.float32)

Y_data = digits.target.astype(np.float32).reshape(-1,1)

print(X_data.shape)

print(Y_data.shape)


通过搭建卷积神经网络来实现sklearn库中的手写数字识别

你可能感兴趣的:(Python数据分析基础----第十六天)