我使用TF Retrain Inception開始的重新訓練示例,但如果我嘗試對圖像進行分類,則會出現錯誤。我使用了下面的代碼 - 分類的代碼是否錯誤,或者我的內存分配有問題嗎? import tensorflow as tf
import sys
# change this as you see fit
image_path = 'C:/tmp/test.jpg'
# Read in
代碼: from keras.applications import InceptionV3
model = InceptionV3(weights="imagenet")
shape = (None,image_size,image_size,num_channels)
x = tf.placeholder(tf.float32, shape=shape)
我知道以下是已經回答的問題,但即使我嘗試了所有建議的解決方案,但都沒有解決我的問題。 我在MNIST數據集上進行了訓練。開始的時候它更深入,但爲了專注於我簡化它的問題。 mnist = mnist_data.read_data_sets('MNIST_data', one_hot=True)
# train the net
def train():
for i in range(1