Google Collab Python 名称错误:在尝试推荐系统的无监督学习时未定义“形状”

问题描述 投票:0回答:1

我在尝试推荐系统、无监督学习时在 Colab 中写了这篇文章

import tensorflow as tf
import numpy as np
import keras
from keras import Sequential
from keras.layers import Dense
from keras.layers import Input

---other variables---

input_user=Input(shape(num_user_features))

当我运行这个时 弹出名称错误:名称“形状”未定义

我从 Keras 导入了所有需求,但它仍然没有像我预期的那样顺利运行

python tensorflow keras
1个回答
0
投票

修复此尝试

input_user = Input(shape=(num_user_features,))
© www.soinside.com 2019 - 2024. All rights reserved.