0
A
回答
1
我認爲這個問題是
training_batches[0][1]
是一個列表,而不是一個numpy.array,就應該相應地修改create_datasets ...
1
下面是從seq2seq.sequence_loss(logits, targets, weights)
實施的摘錄,你在你的代碼中使用:
with ops.name_scope(name, "sequence_loss", [logits, targets, weights]):
num_classes = array_ops.shape(logits)[2]
logits_flat = array_ops.reshape(logits, [-1, num_classes])
targets = array_ops.reshape(targets, [-1])
if softmax_loss_function is None:
crossent = nn_ops.sparse_softmax_cross_entropy_with_logits(
labels=targets, logits=logits_flat)
我相信你看到的錯誤是源於該代碼的最後一行。該錯誤消息是不言自明:
InvalidArgumentError: logits and labels must have the same first dimension, got logits shape [8,6714] and labels shape [2]
即第一維logits_flat
和targets
的大小必須相同。這直接轉換爲您對seq2seq.sequence_loss
的輸入:您的targets
和logits
變量的前兩個維度必須相等。因此,要麼你沒有對兩個變量使用相同數量的批次,或者你的序列長度發生了變化(儘管這很奇怪)。
相關問題
- 1. InvalidArgumentError:logits和標籤必須具有相同的第一維seq2seq Tensorflow
- 2. Sympy-matplotlib:x和y必須具有相同的第一維
- 3. 值錯誤:x和y必須具有相同的第一維
- 4. ValueError:x和y必須具有相同的第一維,ipython 3.5
- 5. Matplotlib:ValueError:x和y必須具有相同的第一維
- 6. ValueError異常:X和Y必須具有相同的第一維
- 7. SciKit高斯混合模型ValueError:x和y必須具有相同的第一維
- 8. 繪製迴歸:ValueError異常:X和Y必須具有相同的第一維
- 9. 如何解決? x和y必須具有相同的第一維
- 10. 數據科學python錯誤 - ValueError:x和y必須具有相同的第一維
- 11. Matplotlib:ValueError異常:X和Y必須具有相同的第一維錯誤
- 12. x和y必須具有相同的第一維,但具有形狀(30,)和(1,)
- 13. 所有輸入數組必須具有相同的維數蟒
- 14. ValueError:所有輸入數組必須具有相同的維數
- 15. scipy.optimize.minimize:ValueError:所有輸入數組必須具有相同的維數
- 16. InvalidArgumentError:logits和標籤必須具有相同的大小:logits_size = [1,2] labels_size = [1,1]
- 17. InvalidArgumentError logits和標籤必須具有相同的大小:logits_size = [3215,25] labels_size = [10,25]
- 18. 使用SoftmaxCrossEntropyWithLogits登錄和標籤必須具有相同的大小錯誤
- 19. 如何獲得這個python代碼中的集羣情節? ValueError:x和y必須具有相同的第一維
- 20. 熊貓繪圖功能給ValueError異常:X和Y必須具有相同的第一維
- 21. Tensorflow cnn錯誤:logits和標籤必須是相同的大小:
- 22. 錯誤:Tensorflow BRNN logits和標籤必須是相同的大小
- 23. 具有相同GUI和邏輯的Windows和Linux程序
- 24. tf.nn.softmax_cross_entropy_with_logits()錯誤:logits和標籤必須大小相同
- 25. 列必須具有相同的長度和規模
- 26. ADDN必須具有相同的大小和形狀與tf.estimator.LinearClassifier
- 27. Manifest必須有一個標籤錯誤
- 28. SciPy的從MATLAB,錯誤轉換:數組必須具有相同的維數
- 29. 用gmail同步標籤的邏輯
- 30. XML具有相同的標籤
您是否能直接在帖子發佈您的代碼的相關部分(鏈接破碎/更新隨着時間的推移這是不是有用的未來的讀者),並添加你想解決什麼問題? – kaufmanu