我目前正在为泰坦尼克号数据集分类建立DNN。在此过程中,我收到以下错误:
InvalidArgumentError: logits and labels must have the same first dimension, got logits shape [1,5] and labels shape [5]
我的代码可以在这里找到:
https://github.com/isaac-altair/Titanic-Dataset/blob/master/Titanic%2BProject.ipynb
我尝试使用np.reshape(logits,(-1,1))重新编写日志,但它不起作用。
由于