深度学习-Tensorflow2.2-深度学习基础和tf.keras{1}-softmax多分类-06
生活随笔
收集整理的這篇文章主要介紹了
深度学习-Tensorflow2.2-深度学习基础和tf.keras{1}-softmax多分类-06
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
softmax分類
Fashion MNIST數據集
完整代碼
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*- import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' # 修改警告級別,不顯示警告 import tensorflow as tf import pandas as pd import numpy as np import matplotlib.pyplot as plt# 下載數據集并劃分為訓練集和測試集 (train_image,train_lable),(test_image,test_label) = tf.keras.datasets.fashion_mnist.load_data() # 歸一化 train_image=train_image/255 test_image=test_image/255 # 建立模型 model = tf.keras.Sequential() model.add(tf.keras.layers.Flatten(input_shape=(28,28))) # 28*28 model.add(tf.keras.layers.Dense(128,activation="relu")) model.add(tf.keras.layers.Dense(10,activation="softmax"))# 編譯模型 model.compile(optimizer="adam",loss="sparse_categorical_crossentropy",metrics=["acc"]) # 使用訓練集訓練模型 model.fit(train_image,train_lable,epochs=5) # 使用測試集進行評價 model.evaluate(test_image,test_label)
獨熱編碼one_hot
如: 北京 [1,0,0] 上海 [0,1,0] 深圳 [0,0,1]
總結
以上是生活随笔為你收集整理的深度学习-Tensorflow2.2-深度学习基础和tf.keras{1}-softmax多分类-06的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 深度学习-Tensorflow2.2-深
- 下一篇: 深度学习-Tensorflow2.2-深