我有一個令人難以置信的簡單算法,錯誤,「ValueError:錯誤時檢查輸入:期望dense_4_input有形狀(無,5),但有形狀(5,1)陣列「.... 這是我正在運行的代碼。 import numpy as np
import matplotlib.pyplot as plt
from keras.models import Sequential
from keras.layers
我想使用keras中定義的各種損失函數來手動計算損失值。例如: from keras.losses import binary_crossentropy
error=binary_crossentropy([1,2,3,4],[6,7,8,9])
給我的錯誤,我想使用其他keras損失函數 AttributeError: 'list' object has no attribute 'dty