📜  google colab 深度学习教程列表 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:40.177000             🧑  作者: Mango

代码示例1
#import necessary libraries
import tensorflow as tf

#load training data and split into train and test sets
mnist = tf.keras.datasets.mnist
 
(x_train,y_train), (x_test,y_test) = mnist.load_data()
x_train, x_test = x_train / 255.0, x_test / 255.0