Tensorflow2的Keras介面:compile、fit
Tensorflow2的Keras介面:compile、fit
能將Train和test的過程封裝起來,使程式碼簡潔化,便於管理。
compile、fit、evaluate、predict函式中引數的具體說明請看:引數說明
完整程式碼例項:
import tensorflow as tf
from tensorflow.keras import datasets, layers, optimizers, Sequential, metrics
def preprocess(x, y):
"""
x is a simple image, not a batch
"""
x = tf.cast(x, dtype=tf.float32) / 255.
x = tf.reshape(x, [28*28])
y = tf.cast(y, dtype=tf.int32)
y = tf.one_hot(y, depth=10)
return x,y
batchsz = 128
(x, y), (x_val, y_val) = datasets.mnist.load_data()
print('datasets:', x.shape, y.shape, x.min(), x.max())
db = tf.data.Dataset.from_tensor_slices((x,y))
db = db.map(preprocess).shuffle(60000).batch(batchsz)
ds_val = tf.data.Dataset.from_tensor_slices((x_val, y_val))
ds_val = ds_val.map(preprocess).batch(batchsz)
sample = next(iter(db))
print(sample[0].shape, sample[1].shape)
network = Sequential([layers.Dense(256, activation='relu'),
layers.Dense(128, activation='relu'),
layers.Dense(64, activation='relu'),
layers.Dense(32, activation='relu'),
layers.Dense(10)])
network.build(input_shape=(None, 28*28))
network.summary()
# metrics:測試的指標
network.compile(optimizer=optimizers.Adam(lr=0.01),
loss=tf.losses.CategoricalCrossentropy(from_logits=True),
metrics=['accuracy']
)
# db:訓練的資料集 epochs:訓練的次數 validation_data:測試的資料集 validation_freq:每訓練n次,測試一次,也可以設定一個指標,達到指標停止訓練
network.fit(db, epochs=5, validation_data=ds_val, validation_freq=2)
network.evaluate(ds_val) #整個訓練完成後,測試一次,也可以用一個新的資料集測試
sample = next(iter(ds_val))
x = sample[0]
y = sample[1] # one-hot
pred = network.predict(x) # [b, 10]獲得一個batch的值
# convert back to number
y = tf.argmax(y, axis=1)
pred = tf.argmax(pred, axis=1)
print(pred)
print(y)
相關文章
- Tensorflow2
- vector::shrink_to_fit()
- tensorflow2.0在訓練資料集的時候,fit和fit_generator的使用
- img元素的object-fit屬性Object
- 實現一個簡單的MVVM(Compile)MVVMCompile
- FIT5147 Data Exploration and Visualisation
- How to compile libusb as shared/static libraryCompile
- sklearn 中fit_tansform 與 transform的區別ORM
- 正規表示式re.compile的學習Compile
- Tensorflow2對GPU記憶體的分配策略GPU記憶體
- 解決Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile(default-compile)AIGoApacheMavenPluginCompile
- 【tf.keras】tf.keras使用tensorflow中定義的optimizerKeras
- over fit與underfit的區別與解決方法
- Python中compile函式的語法及例項!PythonCompile函式
- TensorFlow2基礎:CNN影像分類CNN
- Tensorflow2 深度學習十必知深度學習
- Nuxt.js 應用中的 webpack:compile 事件鉤子UXJSWebCompile事件
- Android中gradle檔案中implementation和compile的異同AndroidGradleCompile
- 三星gear fit2pro怎麼測量心率?三星gear fit2pro測量心率的方法教程
- Tensorflow-kerasKeras
- The app.Configuration 'compile' is obsolete and has been replaced with 'implementation'APPCompile
- org.apache.jasper.JasperException: Unable to compile class for JSPApacheExceptionCompileJS
- FIT 2019 | 安全人員面臨的機遇與挑戰
- TensorFlow 2.0中的tf.keras和Keras有何區別?為什麼以後一定要用tf.keras?Keras
- Keras-TCN的API筆記KerasAPI筆記
- BPF的可移植性和CO-RE (Compile Once – Run Everywhere)Compile
- Tensorflow2 搭建自己的DeeplabV3+語義分割平臺
- tensorflow2 自定義損失函式使用的隱藏坑函式
- go tool compile 報錯 could not import sync (file not found)GoCompileImport
- MVN命令之clean,compile,build,install,package區別CompileUIPackage
- 【Keras篇】---Keras初始,兩種模型構造方法,利用keras實現手寫數字體識別Keras模型構造方法
- keras實現MobileNetKeras
- 基於Keras的動物檢測Keras
- Keras中Mask的傳遞過程Keras
- seq2seq 的 keras 實現Keras
- 【tf.keras】tf.keras載入AlexNet預訓練模型Keras模型
- Vue 啟動專案報錯 Failed to compile with 2 errorsVueAICompileError
- 二分類問題 - 【老魚學tensorflow2】