1 回答

TA貢獻(xiàn)1998條經(jīng)驗(yàn) 獲得超6個(gè)贊
由于您已在下面標(biāo)記了此內(nèi)容,keras因此我假設(shè)您正在使用 InceptionV3 函數(shù)tf.keras
include_top該函數(shù)有一個(gè)可選的形狀元組,僅當(dāng)是時(shí)才可以指定False(否則輸入形狀必須是遵循格式的 (299, 299, 3)channels_last data或具有channels_first數(shù)據(jù)格式的 (3, 299, 299)。它應(yīng)該有 3 個(gè)輸入通道,寬度和高度不能小于75。另外,只有在input_tensor沒(méi)有提供的情況下才可以指定尺寸。您可以在元input_shape組中添加您需要的尺寸。
例如:
tf.keras.applications.InceptionV3(
include_top=False,
weights="imagenet",
input_tensor=None,
input_shape=(100, 1000, 3),
pooling=None,
classes=1000,
classifier_activation="softmax",
)
添加回答
舉報(bào)