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()
- vector shrink_to_fit
- tensorflow2.0在訓練資料集的時候,fit和fit_generator的使用
- img元素的object-fit屬性Object
- C++ shrink_to_fit()的實現C++
- BZOJ4255 : Keep Fit!
- (C language Sample ) Compile procedureCompile
- DBMS_UTILITY.COMPILE_SCHEMACompile
- How to compile Invalid Object?CompileObject
- STL vector中的shrink_to_fit方法(32)
- Tensorflow2對GPU記憶體的分配策略GPU記憶體
- 實現一個簡單的MVVM(Compile)MVVMCompile
- 我們來聊聊 Vue - compileVueCompile
- angularjs compile vs linkAngularJSCompile
- sklearn 中fit_tansform 與 transform的區別ORM
- 三星Gear Fit2與Gear Fit手環區別對比評測
- gear fit 2 續航怎麼樣 三星gear fit 2體驗評測
- TensorFlow2基礎:CNN影像分類CNN
- Tensorflow2 深度學習十必知深度學習
- how bootstrap fit into our website design?bootWeb
- 正規表示式re.compile的學習Compile
- Keras-TCN的API筆記KerasAPI筆記
- 三星gear fit 2深度解析測評 三星gear fit 2怎麼樣?
- TensorFlow 2.0中的tf.keras和Keras有何區別?為什麼以後一定要用tf.keras?Keras
- 【錯誤】 Unable to compile class for JSPCompileJS
- for public synonym, only sys user can compile it?Compile
- over fit與underfit的區別與解決方法
- 【Keras篇】---Keras初始,兩種模型構造方法,利用keras實現手寫數字體識別Keras模型構造方法
- seq2seq 的 keras 實現Keras
- 基於Keras的動物檢測Keras
- Keras中Mask的傳遞過程Keras
- LSTM Keras下的程式碼解讀Keras
- tensorflow2 自定義損失函式使用的隱藏坑函式
- python函式每日一講 - compile()Python函式Compile
- 【tf.keras】tf.keras載入AlexNet預訓練模型Keras模型
- 解決Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile(default-compile)AIGoApacheMavenPluginCompile
- Keras深度神經框架Keras框架