日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 人工智能 > pytorch >内容正文

pytorch

深度学习-Tensorflow2.2-深度学习基础和tf.keras{1}-tf.keras函数式API-08

發(fā)布時間:2024/9/15 pytorch 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 深度学习-Tensorflow2.2-深度学习基础和tf.keras{1}-tf.keras函数式API-08 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
import tensorflow as tf from tensorflow import keras import matplotlib.pyplot as plt %matplotlib inline # 導(dǎo)入fashion數(shù)據(jù)集 fashion_mnist = keras.datasets.fashion_mnist (train_images,train_labels),(test_images,test_labels) = fashion_mnist.load_data() # 對樣本進行歸一化 train_images = train_images/255.0 test_images = test_images/255.0 train_images.shape# 查看數(shù)據(jù)集

input = keras.Input(shape=(28, 28))# 建立一個輸入模型(形狀28*28) # 調(diào)用Flatten層,可以把keras.layers.Flatten()看作一個函數(shù)參數(shù)input x = keras.layers.Flatten()(input) # 調(diào)用dense層輸出32個隱藏單元 激活函數(shù)relu 參數(shù)x x = keras.layers.Dense(32,activation="relu")(x) # 添加一個印制擬合Dropout層 x = keras.layers.Dropout(0.5)(x) x = keras.layers.Dense(64,activation="relu")(x) output = keras.layers.Dense(10,activation="softmax")(x) # 建立一個輸出模型 # 建立模型 model = keras.Model(inputs=input,outputs=output) # 模型的形狀 model.summary() # [(None, 28, 28)] None 表示任意值

# 編譯模型 model.compile(optimizer="adam",loss="sparse_categorical_crossentropy",metrics=["accuracy"]) # 訓(xùn)練模型 history = model.fit(train_images,train_labels,epochs=30,validation_data=(test_images,test_labels))

總結(jié)

以上是生活随笔為你收集整理的深度学习-Tensorflow2.2-深度学习基础和tf.keras{1}-tf.keras函数式API-08的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。