'Dense' object has no attribute 'compile' 错误
摘要:
使用pytorch中的模型叠加时,写成了model = Dense(input_dim,units) 应改为 model.add(Dense(input_dim,units)) model = Sequential() #层次 model.add( Dense(input_dim = 1,units 阅读全文
posted @ 2020-03-30 20:56 viki650 阅读(975) 评论(0) 推荐(0) 编辑